2020-04-13 17:21:19 -05:00
|
|
|
#![feature(ffi_const, ffi_pure)]
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2020-04-13 17:21:19 -05:00
|
|
|
#[ffi_pure] //~ ERROR `#[ffi_const]` function cannot be `#[ffi_pure]`
|
|
|
|
#[ffi_const]
|
|
|
|
pub fn baz();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe { baz() };
|
|
|
|
}
|