We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6cb540 commit 08b9b97Copy full SHA for 08b9b97
src/test/ui/enum-discriminant/issue-70509-partial_eq.rs
@@ -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