aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/static_var1.rs
blob: b3b5751c93227f4c933f3b22b7618f3d9bc89531 (plain)
1
2
3
4
5
static x = 3; // { dg-error "expecting ':' but '=' found" }

fn main() {// { dg-error "failed to parse item in crate" }
    let y = x +1;
}