]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/plugin-args.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui-fulldeps / plugin-args.rs
1 // aux-build:empty-plugin.rs
2 // ignore-stage1
3
4 #![feature(plugin)]
5 #![plugin(empty_plugin(args))]
6 //~^ ERROR malformed `plugin` attribute
7 //~| WARNING compiler plugins are deprecated
8
9 fn main() {}