mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
12 lines
224 B
Rust
12 lines
224 B
Rust
![]() |
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
||
|
|
||
|
use std::ops::Coroutine;
|
||
|
|
||
|
fn foo() -> impl Coroutine<u8> {
|
||
|
//~^ ERROR type mismatch in coroutine arguments
|
||
|
#[coroutine]
|
||
|
|_: ()| {}
|
||
|
}
|
||
|
|
||
|
fn main() { }
|