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