rust/tests/ui/parser/issue-99910-const-let-mutually-exclusive.rs

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

9 lines
203 B
Rust
Raw Normal View History

2022-08-03 17:23:24 -05:00
// run-rustfix
fn main() {
const let _FOO: i32 = 123;
//~^ ERROR const` and `let` are mutually exclusive
let const _BAR: i32 = 123;
//~^ ERROR `const` and `let` are mutually exclusive
}