2019-05-02 14:53:12 +00:00
|
|
|
error: implementing `LintPass` by hand
|
2020-01-08 21:54:08 +00:00
|
|
|
--> $DIR/lint_pass_impl_without_macro.rs:20:6
|
2019-05-02 14:53:12 +00:00
|
|
|
|
|
|
|
|
LL | impl LintPass for Foo {
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2022-09-22 14:25:05 +00:00
|
|
|
= help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2019-05-02 14:53:12 +00:00
|
|
|
--> $DIR/lint_pass_impl_without_macro.rs:4:9
|
|
|
|
|
|
2019-06-24 08:43:51 +00:00
|
|
|
LL | #![deny(rustc::lint_pass_impl_without_macro)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-05-02 14:53:12 +00:00
|
|
|
|
2019-06-13 13:49:33 +00:00
|
|
|
error: implementing `LintPass` by hand
|
2020-01-08 21:54:08 +00:00
|
|
|
--> $DIR/lint_pass_impl_without_macro.rs:30:14
|
2019-06-13 13:49:33 +00:00
|
|
|
|
|
|
|
|
LL | impl LintPass for Custom {
|
|
|
|
| ^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | custom_lint_pass_macro!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ------------------------- in this macro invocation
|
2019-06-13 13:49:33 +00:00
|
|
|
|
|
|
|
|
= help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `custom_lint_pass_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-06-13 13:49:33 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-10-07 22:10:41 +00:00
|
|
|
|