summary refs log tree commit diff
path: root/src/test/ui/invalid/invalid-plugin-attr.stderr
blob: c7b2ce47489a4669cfc77304986fde6711822f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unused attribute
  --> $DIR/invalid-plugin-attr.rs:4:1
   |
LL | #[plugin(bla)]
   | ^^^^^^^^^^^^^^
   |
note: lint level defined here
  --> $DIR/invalid-plugin-attr.rs:1:9
   |
LL | #![deny(unused_attributes)]
   |         ^^^^^^^^^^^^^^^^^

error: crate-level attribute should be an inner attribute: add an exclamation mark: #![foo]
  --> $DIR/invalid-plugin-attr.rs:4:1
   |
LL | #[plugin(bla)]
   | ^^^^^^^^^^^^^^

error: aborting due to 2 previous errors