blob: 4bd9637f0832c74286d11040519eaa01512f0be4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(ffi_const, ffi_pure)]
extern {
#[ffi_pure] //~ ERROR `#[ffi_const]` function cannot be `#[ffi_pure]`
#[ffi_const]
pub fn baz();
}
fn main() {
unsafe { baz() };
}
|