rust/tests/ui-fulldeps/plugin/plugin-as-extern-crate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
258 B
Rust
Raw Normal View History

// check-pass
// aux-build:empty-plugin.rs
// ignore-cross-compile
//
// empty_plugin will not compile on a cross-compiled target because
2020-02-29 11:16:26 -06:00
// librustc_ast is not compiled for it.
extern crate empty_plugin; // OK, plugin crates are still crates
fn main() {}