]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/macro-crate-rlib.rs
Rollup merge of #64337 - rick68:patch-17, r=Dylan-DPC
[rust.git] / src / test / ui-fulldeps / macro-crate-rlib.rs
1 // aux-build:rlib-crate-test.rs
2 // ignore-tidy-linelength
3 // ignore-cross-compile gives a different error message
4
5 #![feature(plugin)]
6 #![plugin(rlib_crate_test)]
7 //~^ ERROR: plugin `rlib_crate_test` only found in rlib format, but must be available in dylib format
8 //~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
9
10 fn main() {}