2023-11-08 18:00:00 -06:00
|
|
|
// Check that validation rejects cleanup edge to a non-cleanup block.
|
|
|
|
//
|
|
|
|
//@ failure-status: 101
|
|
|
|
//@ dont-check-compiler-stderr
|
|
|
|
//@ error-pattern: cleanuppad mismatch
|
|
|
|
#![feature(custom_mir, core_intrinsics)]
|
|
|
|
extern crate core;
|
|
|
|
use core::intrinsics::mir::*;
|
|
|
|
|
|
|
|
#[custom_mir(dialect = "built")]
|
|
|
|
pub fn main() {
|
|
|
|
mir!(
|
|
|
|
{
|
2023-12-26 12:31:52 -06:00
|
|
|
Call(RET = main(), ReturnTo(block), UnwindCleanup(block))
|
2023-11-08 18:00:00 -06:00
|
|
|
}
|
|
|
|
block = {
|
|
|
|
Return()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|