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

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