]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-plugin-cmdline-allow.rs
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[rust.git] / src / test / 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 }