blob: 287d4ccf18010a6e803c18fc14bc6935524e90b4 [file] [log] [blame]
// check that #[allow_fail] is feature-gated
#[allow_fail] //~ ERROR the `#[allow_fail]` attribute is an experimental feature
fn ok_to_fail() {
assert!(false);
}
fn main() {}