]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-plugin-forbid-cmdline.stderr
Rollup merge of #100514 - compiler-errors:issue-100191, r=spastorino
[rust.git] / src / test / ui-fulldeps / lint-plugin-forbid-cmdline.stderr
1 error[E0453]: allow(test_lint) incompatible with previous forbid
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 error[E0453]: allow(test_lint) incompatible with previous forbid
10   --> $DIR/lint-plugin-forbid-cmdline.rs:10:9
11    |
12 LL | #[allow(test_lint)]
13    |         ^^^^^^^^^ overruled by previous forbid
14    |
15    = note: `forbid` lint level was set on command line
16
17 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
18   --> $DIR/lint-plugin-forbid-cmdline.rs:6:1
19    |
20 LL | #![plugin(lint_plugin_test)]
21    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
22    |
23    = note: `#[warn(deprecated)]` on by default
24
25 error: item is named 'lintme'
26   --> $DIR/lint-plugin-forbid-cmdline.rs:8:1
27    |
28 LL | fn lintme() { }
29    | ^^^^^^^^^^^^^^^
30    |
31    = note: requested on the command line with `-F test-lint`
32
33 error[E0453]: allow(test_lint) incompatible with previous forbid
34   --> $DIR/lint-plugin-forbid-cmdline.rs:10:9
35    |
36 LL | #[allow(test_lint)]
37    |         ^^^^^^^^^ overruled by previous forbid
38    |
39    = note: `forbid` lint level was set on command line
40
41 error: aborting due to 4 previous errors; 1 warning emitted
42
43 For more information about this error, try `rustc --explain E0453`.