rust/src/test/ui/feature-gates/feature-gate-allow_fail.rs
2019-08-23 01:42:05 +02:00

9 lines
181 B
Rust

// 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() {}