]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/lint-plugin-cmdline-allow.rs
Rollup merge of #107735 - edward-shen:edward-shen/mailmap, r=dtolnay
[rust.git] / tests / ui-fulldeps / lint-plugin-cmdline-allow.rs
1 // check-pass
2 // aux-build:lint-plugin-test.rs
3 // ignore-stage1
4 // compile-flags: -A test-lint
5
6 #![feature(plugin)]
7 #![plugin(lint_plugin_test)] //~ WARNING compiler plugins are deprecated
8
9 fn lintme() { }
10
11 pub fn main() {
12 }