blob: 872a70ca3a0a7f793704fc51aa7368c1b8214c16 [file] [log] [blame] [edit]
#![allow(incomplete_features)]
#![feature(explicit_tail_calls)]
const fn f() {
become dangerous();
//~^ error: call to unsafe function `dangerous` is unsafe and requires unsafe function or block
}
const unsafe fn dangerous() {}
fn main() {}