]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/gated-plugin.rs
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[rust.git] / src / test / ui-fulldeps / gated-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() {}