mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
10 lines
197 B
Rust
10 lines
197 B
Rust
// aux-build:empty-plugin.rs
|
|
// ignore-stage1
|
|
|
|
#![feature(plugin)]
|
|
#![plugin(empty_plugin(args))]
|
|
//~^ ERROR malformed `plugin` attribute
|
|
//~| WARNING compiler plugins are deprecated
|
|
|
|
fn main() {}
|