]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-87181/empty-tuple-method.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / typeck / issue-87181 / empty-tuple-method.stderr
1 error[E0599]: no method named `foo` found for fn item `fn() -> Foo {Foo}` in the current scope
2   --> $DIR/empty-tuple-method.rs:12:15
3    |
4 LL |     thing.bar.foo();
5    |               ^^^ method not found in `fn() -> Foo {Foo}`
6    |
7 help: use parentheses to construct this tuple struct
8    |
9 LL |     (thing.bar)().foo();
10    |     +         +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0599`.