rust/src/test/compile-fail/warn-path-statement.rs
2012-04-26 14:43:43 -07:00

6 lines
117 B
Rust

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