summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-88844.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/typeck/issue-88844.stderr')
-rw-r--r--src/test/ui/typeck/issue-88844.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/typeck/issue-88844.stderr b/src/test/ui/typeck/issue-88844.stderr
new file mode 100644
index 000000000..90bba90be
--- /dev/null
+++ b/src/test/ui/typeck/issue-88844.stderr
@@ -0,0 +1,12 @@
+error[E0412]: cannot find type `Stuct` in this scope
+ --> $DIR/issue-88844.rs:6:6
+ |
+LL | struct Struct { value: i32 }
+ | ------------- similarly named struct `Struct` defined here
+...
+LL | impl Stuct {
+ | ^^^^^ help: a struct with a similar name exists: `Struct`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0412`.