Skip to content

Commit ea19243

Browse files
committed
Add test
1 parent 859bac7 commit ea19243

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/codegen/enum-u128.rs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// This tests that debug info for "c-like" 128bit enums is properly emitted.
2+
// This is ignored for the fallback mode on MSVC due to problems with PDB.
3+
4+
//
5+
// ignore-msvc
6+
7+
// compile-flags: -g -C no-prepopulate-passes
8+
9+
// CHECK-LABEL: @main
10+
// CHECK: {{.*}}DICompositeType{{.*}}tag: DW_TAG_enumeration_type,{{.*}}name: "Foo",{{.*}}flags: DIFlagEnumClass,{{.*}}
11+
// CHECK: {{.*}}DIEnumerator{{.*}}name: "Lo",{{.*}}value: 0,{{.*}}
12+
// CHECK: {{.*}}DIEnumerator{{.*}}name: "Hi",{{.*}}value: 18446744073709551616,{{.*}}
13+
// CHECK: {{.*}}DIEnumerator{{.*}}name: "Bar",{{.*}}value: 18446745000000000123,{{.*}}
14+
15+
#![allow(incomplete_features)]
16+
#![feature(repr128)]
17+
18+
#[repr(u128)]
19+
pub enum Foo {
20+
Lo,
21+
Hi = 1 << 64,
22+
Bar = 18_446_745_000_000_000_123,
23+
}
24+
25+
pub fn main() {
26+
let foo = Foo::Bar;
27+
}

0 commit comments

Comments
 (0)