summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-87181/tuple-method.stderr
blob: 1e392e17984b09167daaf428c24cf68837c02739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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`.