mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:23:00 +00:00
18 lines
386 B
Rust
18 lines
386 B
Rust
// Check that validation rejects resume terminator in a non-cleanup block.
|
|
//
|
|
//@ failure-status: 101
|
|
//@ dont-check-compiler-stderr
|
|
//@ error-pattern: resume on non-cleanup block
|
|
#![feature(custom_mir, core_intrinsics)]
|
|
extern crate core;
|
|
use core::intrinsics::mir::*;
|
|
|
|
#[custom_mir(dialect = "built")]
|
|
pub fn main() {
|
|
mir! {
|
|
{
|
|
UnwindResume()
|
|
}
|
|
}
|
|
}
|