2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
2017-02-22 13:15:12 -06:00
|
|
|
// aux-build:issue-40001-plugin.rs
|
2017-08-08 09:53:49 -05:00
|
|
|
// ignore-stage1
|
2017-02-22 13:15:12 -06:00
|
|
|
|
2019-11-12 12:22:16 -06:00
|
|
|
#![feature(plugin, register_tool)]
|
2019-11-07 18:00:00 -06:00
|
|
|
#![plugin(issue_40001_plugin)] //~ WARNING compiler plugins are deprecated
|
2019-11-12 12:22:16 -06:00
|
|
|
#![register_tool(plugin)]
|
2017-02-22 13:15:12 -06:00
|
|
|
|
2020-07-07 10:12:44 -05:00
|
|
|
#[plugin::allowed_attr]
|
2017-02-22 13:15:12 -06:00
|
|
|
fn main() {}
|