2019-11-22 14:06:56 -06:00
|
|
|
// aux-build:empty-plugin.rs
|
2015-01-02 20:26:00 -06:00
|
|
|
// ignore-stage1
|
|
|
|
|
|
|
|
#![feature(plugin)]
|
2019-11-29 16:20:06 -06:00
|
|
|
#![plugin(empty_plugin(args))]
|
|
|
|
//~^ ERROR malformed `plugin` attribute
|
|
|
|
//~| WARNING compiler plugins are deprecated
|
2015-01-02 20:26:00 -06:00
|
|
|
|
2019-11-22 14:06:56 -06:00
|
|
|
fn main() {}
|