2022-12-17 13:20:29 -06:00
|
|
|
error[E0308]: mismatched types
|
2024-04-11 08:15:34 -05:00
|
|
|
--> $DIR/tuple-mismatch.rs:7:20
|
2022-12-17 13:20:29 -06:00
|
|
|
|
|
|
|
|
LL | yield ((), ());
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^^ expected `((), ())`, found `()`
|
2022-12-17 13:20:29 -06:00
|
|
|
|
|
|
|
|
= note: expected tuple `((), ())`
|
|
|
|
found unit type `()`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-17 13:20:29 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|