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