]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/feature-gate-plugin.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui-fulldeps / feature-gate-plugin.rs
1 // aux-build:empty-plugin.rs
2 // ignore-stage1
3
4 #![plugin(empty_plugin)]
5 //~^ ERROR compiler plugins are deprecated
6 //~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
7
8 fn main() {}