2019-11-30 14:08:39 +03:00
|
|
|
// check-pass
|
2019-11-22 23:06:56 +03:00
|
|
|
// aux-build:empty-plugin.rs
|
2015-02-11 22:33:07 -08:00
|
|
|
// ignore-cross-compile
|
|
|
|
//
|
2019-11-22 23:06:56 +03:00
|
|
|
// empty_plugin will not compile on a cross-compiled target because
|
2020-02-29 20:16:26 +03:00
|
|
|
// librustc_ast is not compiled for it.
|
2015-02-11 22:33:07 -08:00
|
|
|
|
2019-11-30 14:08:39 +03:00
|
|
|
extern crate empty_plugin; // OK, plugin crates are still crates
|
2015-02-11 22:33:07 -08:00
|
|
|
|
2019-11-30 14:08:39 +03:00
|
|
|
fn main() {}
|