]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-plugin-cmdline-allow.rs
Rollup merge of #103475 - oli-obk:generic_param_indices, r=lcnr
[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 }