rust/tests/ui/parser/issues/issue-99910-const-let-mutually-exclusive.fixed
Esteban Küber 855444ec54 mv tests
2023-10-24 21:27:05 +00:00

9 lines
195 B
Rust

// run-rustfix
fn main() {
const _FOO: i32 = 123;
//~^ ERROR const` and `let` are mutually exclusive
const _BAR: i32 = 123;
//~^ ERROR `const` and `let` are mutually exclusive
}