Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
lint
/
must_not_suspend
/
tuple-mismatch.rs
blob: ec409925d7248375b58e9f4d0aeb854f8c79ef6d [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
coroutines
,
stmt_expr_attributes
)]
fn
main
()
{
let
_coroutine
=
#[
coroutine
]
||
{
yield
((),
((),
()));
yield
((),
());
//~^ ERROR mismatched types
};
}