aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/static_var1.rs
blob: 5be0e75ce728f650c787e1b412b3baeb2710d145 (plain)
1
2
3
4
5
6
static x:i32 = 3;

fn main() {
    let y = x +1;
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}