mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
40ae34194c
detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR.
53 lines
998 B
Rust
53 lines
998 B
Rust
// run-pass
|
|
|
|
// revisions: default nomiropt
|
|
//[nomiropt]compile-flags: -Z mir-opt-level=0
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::{CoroutineState, Coroutine};
|
|
use std::pin::Pin;
|
|
|
|
fn finish<T>(mut amt: usize, mut t: T) -> T::Return
|
|
where T: Coroutine<(), Yield = ()> + Unpin,
|
|
{
|
|
loop {
|
|
match Pin::new(&mut t).resume(()) {
|
|
CoroutineState::Yielded(()) => amt = amt.checked_sub(1).unwrap(),
|
|
CoroutineState::Complete(ret) => {
|
|
assert_eq!(amt, 0);
|
|
return ret
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
|
finish(1, || yield);
|
|
finish(8, || {
|
|
for _ in 0..8 {
|
|
yield;
|
|
}
|
|
});
|
|
finish(1, || {
|
|
if true {
|
|
yield;
|
|
} else {
|
|
}
|
|
});
|
|
finish(1, || {
|
|
if false {
|
|
} else {
|
|
yield;
|
|
}
|
|
});
|
|
finish(2, || {
|
|
if { yield; false } {
|
|
yield;
|
|
panic!()
|
|
}
|
|
yield
|
|
});
|
|
}
|