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
385 B
Rust
Raw Normal View History

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