rust/src/test/ui/feature-gates/feature-gate-stmt_expr_attributes.rs

5 lines
126 B
Rust
Raw Normal View History

const X: i32 = #[allow(dead_code)] 8;
//~^ ERROR attributes on expressions are experimental. (see issue #15701)
fn main() {}