blob: 488f2b775bf0b48d5aec7e1d228d29fcae48bc24 (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:empty-plugin.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(empty_plugin(args))]
//~^ ERROR malformed `plugin` attribute
//~| WARNING compiler plugins are deprecated
fn main() {}
|