]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/plugin-as-extern-crate.rs
Auto merge of #107543 - ehuss:protocol-sparse, r=jyn514
[rust.git] / tests / 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() {}