summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-116164.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/resolve/issue-116164.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-116164.stderr b/tests/ui/resolve/issue-116164.stderr
new file mode 100644
index 000000000..5820a189f
--- /dev/null
+++ b/tests/ui/resolve/issue-116164.stderr
@@ -0,0 +1,14 @@
+error[E0425]: cannot find value `ExOne` in this scope
+ --> $DIR/issue-116164.rs:17:5
+ |
+LL | ExOne;
+ | ^^^^^ not found in this scope
+ |
+help: consider importing this unit variant
+ |
+LL + use inner::Example::ExOne;
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0425`.