about summary refs log tree commit diff
path: root/src/test/ui/coherence
diff options
context:
space:
mode:
authorKornel <kornel@geekhood.net>2020-08-27 13:27:14 +0100
committerKornel <kornel@geekhood.net>2020-09-01 18:38:14 +0100
commit7ec1de062a1aadef0293bb65e71fbcc7cc24ebfd (patch)
tree62d30e2e0f31039bdb4abeb31ec474359e85df42 /src/test/ui/coherence
parent397db054cb1f3d98e3d2809d25c60f1979cd5a97 (diff)
downloadrust-7ec1de062a1aadef0293bb65e71fbcc7cc24ebfd.tar.gz
rust-7ec1de062a1aadef0293bb65e71fbcc7cc24ebfd.zip
Clarify message about unresolved use
Diffstat (limited to 'src/test/ui/coherence')
-rw-r--r--src/test/ui/coherence/conflicting-impl-with-err.stderr8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/coherence/conflicting-impl-with-err.stderr b/src/test/ui/coherence/conflicting-impl-with-err.stderr
index a8a5730accd..3009b452dc7 100644
--- a/src/test/ui/coherence/conflicting-impl-with-err.stderr
+++ b/src/test/ui/coherence/conflicting-impl-with-err.stderr
@@ -1,14 +1,14 @@
-error[E0433]: failed to resolve: use of undeclared type or module `nope`
+error[E0433]: failed to resolve: use of undeclared crate or module `nope`
   --> $DIR/conflicting-impl-with-err.rs:4:11
    |
 LL | impl From<nope::Thing> for Error {
-   |           ^^^^ use of undeclared type or module `nope`
+   |           ^^^^ use of undeclared crate or module `nope`
 
-error[E0433]: failed to resolve: use of undeclared type or module `nope`
+error[E0433]: failed to resolve: use of undeclared crate or module `nope`
   --> $DIR/conflicting-impl-with-err.rs:5:16
    |
 LL |     fn from(_: nope::Thing) -> Self {
-   |                ^^^^ use of undeclared type or module `nope`
+   |                ^^^^ use of undeclared crate or module `nope`
 
 error: aborting due to 2 previous errors