]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-plugin-cmdline-allow.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[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 }