]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-plugin-forbid-cmdline.stderr
Auto merge of #65302 - msizanoen1:fix-armv7-segfault, r=alexcrichton
[rust.git] / src / test / ui-fulldeps / lint-plugin-forbid-cmdline.stderr
1 error[E0453]: allow(test_lint) overruled by outer forbid(test_lint)
2   --> $DIR/lint-plugin-forbid-cmdline.rs:10:9
3    |
4 LL | #[allow(test_lint)]
5    |         ^^^^^^^^^ overruled by previous forbid
6    |
7    = note: `forbid` lint level was set on command line
8
9 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
10   --> $DIR/lint-plugin-forbid-cmdline.rs:6:1
11    |
12 LL | #![plugin(lint_plugin_test)]
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
14    |
15    = note: `#[warn(deprecated)]` on by default
16
17 error: item is named 'lintme'
18   --> $DIR/lint-plugin-forbid-cmdline.rs:8:1
19    |
20 LL | fn lintme() { }
21    | ^^^^^^^^^^^^^^^
22    |
23    = note: requested on the command line with `-F test-lint`
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0453`.