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