mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
13 lines
224 B
Rust
13 lines
224 B
Rust
![]() |
// compile-flags: -Zverbose
|
||
|
|
||
|
#![feature(generators, generator_trait)]
|
||
|
|
||
|
fn main() {
|
||
|
let x = "Type mismatch test";
|
||
|
let generator :() = || {
|
||
|
//~^ ERROR mismatched types
|
||
|
yield 1i32;
|
||
|
return x
|
||
|
};
|
||
|
}
|