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