blob: 0a1c4528aa6d921ed26f562b41eb72eafc48ae45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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!(
{
Call(RET = main(), block, UnwindCleanup(block))
}
block = {
Return()
}
)
}
|