]> git.proxmox.com Git - rustc.git/blame - src/test/ui/typeck/issue-87181/empty-tuple-method.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / typeck / issue-87181 / empty-tuple-method.stderr
CommitLineData
04454e1e
FG
1error[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 |
4LL | thing.bar.foo();
f2b60f7d 5 | ^^^ method not found in `fn() -> Foo {Foo}`
04454e1e 6 |
2b03887a 7help: use parentheses to construct this tuple struct
04454e1e
FG
8 |
9LL | (thing.bar)().foo();
10 | + +++
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0599`.