]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/plugin-args.rs
Auto merge of #107543 - ehuss:protocol-sparse, r=jyn514
[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() {}