We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tests/ui/panic-runtime/abort-link-to-unwinding-crates.rs
1 parent b627a30 commit cc0c81dCopy full SHA for cc0c81d
tests/ui/panic-runtime/abort-link-to-unwinding-crates.rs
@@ -1,10 +1,8 @@
1
//@ run-pass
2
-#![allow(unused_variables)]
3
//@ compile-flags:-C panic=abort
4
//@ aux-build:exit-success-if-unwind.rs
5
//@ no-prefer-dynamic
6
-//@ ignore-wasm32 no processes
7
-//@ ignore-sgx no processes
+//@ needs-subprocess
8
9
extern crate exit_success_if_unwind;
10
@@ -13,7 +11,7 @@ use std::process::Command;
13
11
14
12
fn main() {
15
let mut args = env::args_os();
16
- let me = args.next().unwrap();
+ let _ = args.next().unwrap();
17
18
if let Some(s) = args.next() {
19
if &*s == "foo" {
0 commit comments