summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs')
-rw-r--r--src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs b/src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs
new file mode 100644
index 000000000..a1ef68ecf
--- /dev/null
+++ b/src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.rs
@@ -0,0 +1,5 @@
+use Foo; //~ ERROR unresolved
+
+use Foo1; //~ ERROR unresolved
+
+fn main() {}