summary refs log tree commit diff
path: root/src/test/ui/no-link.rs
blob: 939271832e3df82409f06542f61524184324117a (plain)
1
2
3
4
5
6
7
8
// aux-build:empty-struct.rs

#[no_link]
extern crate empty_struct;

fn main() {
    empty_struct::XEmpty1; //~ ERROR cannot find value `XEmpty1` in crate `empty_struct`
}