]> git.proxmox.com Git - rustc.git/blame - src/test/ui/no-link.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / no-link.rs
CommitLineData
a2a8927a 1// check-pass
476ff2be
SL
2// aux-build:empty-struct.rs
3
1a4d82fc 4#[no_link]
476ff2be 5extern crate empty_struct;
223e47cc
LB
6
7fn main() {
a2a8927a 8 empty_struct::XEmpty1 {};
223e47cc 9}