summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-stmt_expr_attributes.rs
blob: 3e5b6260d74bc1ee24b6d200b8c540f475de5ecf (plain)
1
2
3
4
const X: i32 = #[allow(dead_code)] 8;
//~^ ERROR attributes on expressions are experimental. (see issue #15701)

fn main() {}