summary refs log tree commit diff
path: root/src/test/compile-fail/warn-path-statement.rs
blob: 1c928a91b2679aa37c438cc11d7e75aae01a9191 (plain)
1
2
3
4
5
6
// compile-flags: -D path-statement
fn main() {

    let x = 10;
    x; //~ ERROR path statement with no effect
}