blob: 7aaa1ee03c4bc4065448226177f1f9190b6f9eff [file] [log] [blame]
// 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(coroutine_trait)]
#![feature(coroutines)]
use std::ops::Coroutine;
fn gen() -> impl Coroutine<usize> {
|_: usize| {
println!("-> {}", yield);
}
}
fn main() {}