mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
258 B
Rust
11 lines
258 B
Rust
// 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() {}
|