mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-24 16:54:09 +00:00
9 lines
203 B
Rust
9 lines
203 B
Rust
// 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
|
|
}
|