rust/tests/ui/feature-gates/feature-gate-inline_const.rs

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

7 lines
110 B
Rust
Raw Normal View History

2020-09-21 14:10:31 -05:00
fn main() {
let _ = const {
2020-10-06 15:53:12 -05:00
//~^ ERROR inline-const is experimental [E0658]
2020-09-21 14:10:31 -05:00
true
};
}