2022-07-02 17:53:16 +00:00
|
|
|
#![crate_type = "lib"]
|
2024-10-31 10:39:45 +00:00
|
|
|
#![allow(missing_abi)]
|
2022-07-02 17:53:16 +00:00
|
|
|
|
|
|
|
extern fn none_fn(x: bool) -> i32;
|
|
|
|
//~^ ERROR free function without a body
|
|
|
|
extern "C" fn c_fn(x: bool) -> i32;
|
|
|
|
//~^ ERROR free function without a body
|