summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr')
-rw-r--r--src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr b/src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr
deleted file mode 100644
index ad6e93334..000000000
--- a/src/test/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-error: implementing `LintPass` by hand
- --> $DIR/lint_pass_impl_without_macro.rs:20:6
- |
-LL | impl LintPass for Foo {
- | ^^^^^^^^
- |
- = help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
-note: the lint level is defined here
- --> $DIR/lint_pass_impl_without_macro.rs:4:9
- |
-LL | #![deny(rustc::lint_pass_impl_without_macro)]
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-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
-