Error code E0633

Note: this error code is no longer emitted by the compiler.

The unwind attribute was malformed.

Erroneous code example:

#![feature(unwind_attributes)]

#[unwind()] // error: expected one argument
pub extern "C" fn something() {}

fn main() {}
Run

The #[unwind] attribute should be used as follows:

NB. The default behavior here is “allowed”, but this is unspecified and likely to change in the future.

Back to list of error codes