mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-31 18:55:02 +00:00
12 lines
151 B
Rust
12 lines
151 B
Rust
// Syntactically, a foreign static may have a body.
|
|
|
|
// check-pass
|
|
|
|
fn main() {}
|
|
|
|
#[cfg(FALSE)]
|
|
extern "C" {
|
|
static X: u8;
|
|
static mut Y: u8;
|
|
}
|