2019-11-30 05:08:39 -06:00
|
|
|
// check-pass
|
2019-11-22 14:06:56 -06:00
|
|
|
// aux-build:empty-plugin.rs
|
2015-02-12 00:33:07 -06:00
|
|
|
// ignore-cross-compile
|
|
|
|
//
|
2019-11-22 14:06:56 -06:00
|
|
|
// 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.
|
2015-02-12 00:33:07 -06:00
|
|
|
|
2019-11-30 05:08:39 -06:00
|
|
|
extern crate empty_plugin; // OK, plugin crates are still crates
|
2015-02-12 00:33:07 -06:00
|
|
|
|
2019-11-30 05:08:39 -06:00
|
|
|
fn main() {}
|