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