Skip to content

Commit 08b9b97

Browse files
committed
add test for repr(128) enum derives
1 parent d6cb540 commit 08b9b97

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// run-pass
2+
#![feature(repr128, arbitrary_enum_discriminant)]
3+
4+
#[derive(PartialEq, Debug)]
5+
#[repr(i128)]
6+
enum Test {
7+
A(Box<u64>) = 0,
8+
B(usize) = u64::max_value() as i128 + 1,
9+
}
10+
11+
fn main() {
12+
assert_ne!(Test::A(Box::new(2)), Test::B(0));
13+
// This previously caused a segfault.
14+
//
15+
// See https://github.com/rust-lang/rust/issues/70509#issuecomment-620654186
16+
// for a detailed explanation.
17+
}

0 commit comments

Comments
 (0)