summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/must_not_suspend/tuple-mismatch.stderr
blob: 294476107ef7881a3648aaad69abe8f9b3e29cd9 (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 previous error

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