rust/src/test/compile-fail/warn-path-statement.rs

6 lines
117 B
Rust
Raw Normal View History

// compile-flags: -W err-path-statement
fn main() {
let x = 10;
x; //~ ERROR path statement with no effect
}