]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/lint-plugin-deny-attr.stderr
Rollup merge of #96763 - Abdur-rahmaanJ:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui-fulldeps / lint-plugin-deny-attr.stderr
1 error: item is named 'lintme'
2   --> $DIR/lint-plugin-deny-attr.rs:9:1
3    |
4 LL | fn lintme() { }
5    | ^^^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/lint-plugin-deny-attr.rs:7:9
9    |
10 LL | #![deny(test_lint)]
11    |         ^^^^^^^^^
12
13 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
14   --> $DIR/lint-plugin-deny-attr.rs:5:1
15    |
16 LL | #![plugin(lint_plugin_test)]
17    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
18    |
19    = note: `#[warn(deprecated)]` on by default
20
21 error: aborting due to previous error; 1 warning emitted
22