mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
370 B
Rust
15 lines
370 B
Rust
#![feature(generators, generator_trait)]
|
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
|
|
|
// Regression test for #58892, generator drop shims should not have blocks
|
|
// spuriously marked as cleanup
|
|
|
|
// EMIT_MIR generator_drop_cleanup.main-{closure#0}.generator_drop.0.mir
|
|
fn main() {
|
|
let gen = || {
|
|
let _s = String::new();
|
|
yield;
|
|
};
|
|
}
|