]> git.proxmox.com Git - rustc.git/blob - src/test/ui/extern/not-in-block.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / 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