]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-87181/enum-variant.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / typeck / issue-87181 / enum-variant.stderr
1 error[E0599]: no method named `foo` found for fn item `fn() -> Foo {Foo::Tup}` in the current scope
2   --> $DIR/enum-variant.rs:14:15
3    |
4 LL |     thing.bar.foo();
5    |               ^^^ method not found in `fn() -> Foo {Foo::Tup}`
6    |
7 help: use parentheses to construct this tuple variant
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`.