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