os-rust/tests/ui/feature-gates/feature-gate-stmt_expr_attributes.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
288 B
Rust
Raw Normal View History

const X: i32 = #[allow(dead_code)] 8;
2019-04-10 16:40:12 -07:00
//~^ ERROR attributes on expressions are experimental
const Y: i32 =
/// foo
//~^ ERROR attributes on expressions are experimental
8;
const Z: i32 = {
//! foo
//~^ ERROR attributes on expressions are experimental
8
};
fn main() {}