summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/must_not_suspend/tuple-mismatch.stderr
blob: cca8cd9bd89f16ce5e9b3aecc24c6ed5f4cf58dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/tuple-mismatch.rs:6:20
   |
LL |         yield ((), ());
   |                    ^^ expected tuple, found `()`
   |
   = note:  expected tuple `((), ())`
           found unit type `()`

error: aborting due to previous error

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