mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
239 B
Rust
11 lines
239 B
Rust
// run-pass
|
|
// aux-build:issue-40001-plugin.rs
|
|
// ignore-stage1
|
|
|
|
#![feature(plugin, register_tool)]
|
|
#![plugin(issue_40001_plugin)] //~ WARNING compiler plugins are deprecated
|
|
#![register_tool(plugin)]
|
|
|
|
#[plugin::allowed_attr]
|
|
fn main() {}
|