rust/tests/ui/coroutine/issue-69017.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
384 B
Rust
Raw Normal View History

2020-02-10 17:03:49 +00:00
// 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
2023-10-19 21:46:28 +00:00
#![feature(coroutine_trait)]
#![feature(coroutines)]
2020-02-10 17:03:49 +00:00
2023-10-19 16:06:43 +00:00
use std::ops::Coroutine;
2020-02-10 17:03:49 +00:00
2023-10-19 16:06:43 +00:00
fn gen() -> impl Coroutine<usize> {
2020-02-10 17:03:49 +00:00
|_: usize| {
println!("-> {}", yield);
}
}
2020-02-10 18:47:52 +00:00
fn main() {}