mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
8 lines
198 B
Rust
8 lines
198 B
Rust
#![crate_type = "lib"]
|
|
#![allow(missing_abi)]
|
|
|
|
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
|