mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-25 13:31:44 +00:00
9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
// 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
|
|
}
|