]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/gated-plugin.rs
Fix problem noticed in PR106859 with char -> u8 suggestion
[rust.git] / tests / 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() {}