summaryrefslogtreecommitdiffstats
path: root/tests/ui-fulldeps/internal-lints/diagnostics_incorrect.stderr
blob: e849ca2829e434c5532471666df115c9612498e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: malformed `rustc_lint_diagnostics` attribute input
  --> $DIR/diagnostics_incorrect.rs:10:5
   |
LL |     #[rustc_lint_diagnostics(a)]
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: must be of the form: `#[rustc_lint_diagnostics]`

error: attribute should be applied to a function definition
  --> $DIR/diagnostics_incorrect.rs:5:1
   |
LL | #[rustc_lint_diagnostics]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL | struct Foo;
   | ----------- not a function definition

error: aborting due to 2 previous errors