summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-5439.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-5439.stderr')
-rw-r--r--tests/ui/issues/issue-5439.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-5439.stderr b/tests/ui/issues/issue-5439.stderr
new file mode 100644
index 000000000..dc8f8b878
--- /dev/null
+++ b/tests/ui/issues/issue-5439.stderr
@@ -0,0 +1,11 @@
+error[E0560]: struct `Foo` has no field named `nonexistent`
+ --> $DIR/issue-5439.rs:11:31
+ |
+LL | return Box::new(Foo { nonexistent: self, foo: i });
+ | ^^^^^^^^^^^ `Foo` does not have this field
+ |
+ = note: available fields are: `foo`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0560`.