summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/plugin-as-extern-crate.rs
blob: 4d26e08d81e9b72f9e984829c7813ecd428682ff (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass
// aux-build:empty-plugin.rs
// ignore-cross-compile
//
// empty_plugin will not compile on a cross-compiled target because
// librustc_ast is not compiled for it.

extern crate empty_plugin; // OK, plugin crates are still crates

fn main() {}