mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +00:00
7 lines
104 B
Rust
7 lines
104 B
Rust
// compile-flags: -F unused -A unused
|
|
|
|
fn main() {
|
|
let x = 1;
|
|
//~^ ERROR unused variable: `x`
|
|
}
|