]> git.lizzy.rs Git - rust.git/blob - tests/ui/empty/no-link.rs
Rollup merge of #107491 - notriddle:notriddle/setting-check, r=GuillaumeGomez
[rust.git] / tests / ui / empty / no-link.rs
1 // check-pass
2 // aux-build:empty-struct.rs
3
4 #[no_link]
5 extern crate empty_struct;
6
7 fn main() {
8     empty_struct::XEmpty1 {};
9 }