Skip to content

Commit 4a25a49

Browse files
committed
Fix test
1 parent 247da7b commit 4a25a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/test/run-pass-valgrind/cast-enum-with-dtor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn main() {
2828
{
2929
let e = E::C;
3030
assert_eq!(e as u32, 2);
31-
assert_eq!(FLAG.load(Ordering::SeqCst), 0);
31+
assert_eq!(FLAG.load(Ordering::SeqCst), 1);
3232
}
3333
assert_eq!(FLAG.load(Ordering::SeqCst), 1);
3434
}

0 commit comments

Comments
 (0)