about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-16058.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/issue-16058.stderr')
-rw-r--r--tests/ui/resolve/issue-16058.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-16058.stderr b/tests/ui/resolve/issue-16058.stderr
new file mode 100644
index 00000000000..c47d22cef5f
--- /dev/null
+++ b/tests/ui/resolve/issue-16058.stderr
@@ -0,0 +1,18 @@
+error[E0574]: expected struct, variant or union type, found enum `Result`
+  --> $DIR/issue-16058.rs:10:9
+   |
+LL |         Result {
+   |         ^^^^^^ not a struct, variant or union type
+   |
+help: consider importing one of these items instead
+   |
+LL | use std::fmt::Result;
+   |
+LL | use std::io::Result;
+   |
+LL | use std::thread::Result;
+   |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0574`.