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