summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-87181/tuple-field.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/typeck/issue-87181/tuple-field.stderr')
-rw-r--r--src/test/ui/typeck/issue-87181/tuple-field.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/typeck/issue-87181/tuple-field.stderr b/src/test/ui/typeck/issue-87181/tuple-field.stderr
new file mode 100644
index 000000000..4d22ada02
--- /dev/null
+++ b/src/test/ui/typeck/issue-87181/tuple-field.stderr
@@ -0,0 +1,16 @@
+error[E0609]: no field `0` on type `fn(char, u16) -> Foo {Foo}`
+ --> $DIR/tuple-field.rs:12:15
+ |
+LL | thing.bar.0;
+ | --------- ^
+ | |
+ | this is the constructor of a struct
+ |
+help: call the constructor
+ |
+LL | (thing.bar)(_, _).0;
+ | + +++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0609`.