about summary refs log tree commit diff
path: root/tests/ui/parser/foreign-static-syntactic-pass.rs
blob: d7c21c672ab6c18afbae6c85eab92d3a2351a5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Syntactically, a foreign static may have a body.

//@ check-pass

fn main() {}

#[cfg(false)]
extern "C" {
    static X: u8;
    static mut Y: u8;
}