]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/plugin-as-extern-crate.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.git] / src / test / ui-fulldeps / plugin-as-extern-crate.rs
1 // check-pass
2 // aux-build:empty-plugin.rs
3 // ignore-cross-compile
4 //
5 // empty_plugin will not compile on a cross-compiled target because
6 // librustc_ast is not compiled for it.
7
8 extern crate empty_plugin; // OK, plugin crates are still crates
9
10 fn main() {}