blob: ed88b9afd87580090f88291f0ba6433b1dbcd248 [file] [log] [blame]
error[E0633]: malformed `unwind` attribute input
--> $DIR/malformed-unwind-2.rs:3:1
|
LL | #[unwind(allowed, aborts)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ invalid argument
help: the allowed arguments are `allowed` and `aborts`
|
LL | #[unwind(allowed)]
|
LL | #[unwind(aborts)]
|
error[E0633]: malformed `unwind` attribute input
--> $DIR/malformed-unwind-2.rs:7:1
|
LL | #[unwind(unsupported)]
| ^^^^^^^^^^^^^^^^^^^^^^ invalid argument
help: the allowed arguments are `allowed` and `aborts`
|
LL | #[unwind(allowed)]
|
LL | #[unwind(aborts)]
|
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0633`.