mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
384 B
Rust
19 lines
384 B
Rust
// This issue reproduces an ICE on compile
|
|
// Fails on 2020-02-08 nightly
|
|
// regressed commit: https://github.com/rust-lang/rust/commit/f8fd4624474a68bd26694eff3536b9f3a127b2d3
|
|
//
|
|
// check-pass
|
|
|
|
#![feature(generator_trait)]
|
|
#![feature(generators)]
|
|
|
|
use std::ops::Generator;
|
|
|
|
fn gen() -> impl Generator<usize> {
|
|
|_: usize| {
|
|
println!("-> {}", yield);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|