11 lines
359 B
Rust
11 lines
359 B
Rust
// aux-build:rlib-crate-test.rs
|
|
// ignore-tidy-linelength
|
|
// ignore-cross-compile gives a different error message
|
|
|
|
#![feature(plugin)]
|
|
#![plugin(rlib_crate_test)]
|
|
//~^ ERROR: plugin `rlib_crate_test` only found in rlib format, but must be available in dylib format
|
|
//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
|
|
|
|
fn main() {}
|