summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/must_not_suspend/tuple-mismatch.stderr
blob: 3adf26cfee229aa02c43da251ef85fbdd490c104 (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 `((), ())`, found `()`
   |
   = note:  expected tuple `((), ())`
           found unit type `()`

error: aborting due to 1 previous error

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