summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr
blob: 9df6be65eb30150a79652bfd792d35a0b22941e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: implementing `LintPass` by hand
  --> $DIR/lint_pass_impl_without_macro.rs:20:6
   |
LL | impl LintPass for Foo {
   |      ^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/lint_pass_impl_without_macro.rs:4:9
   |
LL | #![deny(rustc::lint_pass_impl_without_macro)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = help: try using `declare_lint_pass!` or `impl_lint_pass!` instead

error: implementing `LintPass` by hand
  --> $DIR/lint_pass_impl_without_macro.rs:30:14
   |
LL |         impl LintPass for Custom {
   |              ^^^^^^^^
...
LL | custom_lint_pass_macro!();
   | ------------------------- in this macro invocation
   |
   = help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
   = note: this error originates in the macro `custom_lint_pass_macro` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 2 previous errors