Skip to content

Commit 1424a6b

Browse files
committed
Fix run-pass tests
1 parent 238bf81 commit 1424a6b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/test/run-pass/issues/issue-30530.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ pub enum Handler {
1212
}
1313

1414
fn main() {
15-
take(Handler::Default, Box::new(main));
15+
#[allow(unused_must_use)] {
16+
take(Handler::Default, Box::new(main));
17+
}
1618
}
1719

1820
#[inline(never)]

src/test/run-pass/panics/panic-handler-flail-wildly.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// run-pass
2+
23
#![allow(stable_features)]
4+
#![allow(unused_must_use)]
35

46
// ignore-emscripten no threads support
57

0 commit comments

Comments
 (0)