summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-87181/tuple-field.stderr
blob: 0a7d30b615a635990599586121124f374557db29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0609]: no field `0` on type `fn(char, u16) -> Foo {Foo}`
  --> $DIR/tuple-field.rs:12:15
   |
LL |     thing.bar.0;
   |               ^
   |
help: use parentheses to construct this tuple struct
   |
LL |     (thing.bar)(/* char */, /* u16 */).0;
   |     +         ++++++++++++++++++++++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0609`.