about summary refs log tree commit diff
path: root/src/test/ui/panic_implementation-closures.rs
blob: 92c333b4092fcbe946bb9ce4c28b4703327bbef0 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-pass

#![crate_type = "rlib"]
#![no_std]

#[panic_handler]
pub fn panic_fmt(_: &::core::panic::PanicInfo) -> ! {
    |x: u8| x;
    loop {}
}