]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/feature-gate-plugin.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / 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() {}