mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +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
|
|
};
|
|
}
|