]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-14227.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-14227.rs
CommitLineData
1a4d82fc 1extern {
0bf4aa26 2 pub static symbol: u32;
223e47cc 3}
0bf4aa26 4static CRASH: u32 = symbol;
d9bb1a4e 5//~^ ERROR use of extern static is unsafe and requires
223e47cc
LB
6
7fn main() {}