mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
26 lines
507 B
Rust
26 lines
507 B
Rust
// run-fail
|
|
// needs-unwind
|
|
// error-pattern:generator resumed after panicking
|
|
// ignore-emscripten no processes
|
|
|
|
// Test that we get the correct message for resuming a panicked generator.
|
|
|
|
#![feature(generators, generator_trait)]
|
|
|
|
use std::{
|
|
ops::Generator,
|
|
pin::Pin,
|
|
panic,
|
|
};
|
|
|
|
fn main() {
|
|
let mut g = || {
|
|
panic!();
|
|
yield;
|
|
};
|
|
panic::catch_unwind(panic::AssertUnwindSafe(|| {
|
|
let x = Pin::new(&mut g).resume(());
|
|
}));
|
|
Pin::new(&mut g).resume(());
|
|
}
|