]> git.lizzy.rs Git - rust.git/blob - tests/ui/extern/not-in-block.rs
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / extern / not-in-block.rs
1 #![crate_type = "lib"]
2
3 extern fn none_fn(x: bool) -> i32;
4 //~^ ERROR free function without a body
5 extern "C" fn c_fn(x: bool) -> i32;
6 //~^ ERROR free function without a body