cbindgen/tests/rust/static.rs

18 lines
221 B
Rust
Raw Normal View History

#[no_mangle]
pub static NUMBER: i32 = 10;
2017-10-19 00:18:53 -04:00
#[repr(C)]
struct Foo {
}
struct Bar {
}
#[no_mangle]
pub static mut FOO: Foo = Foo { };
#[no_mangle]
pub static BAR: Bar = Bar { };
2017-10-19 00:18:53 -04:00
#[no_mangle]
pub extern "C" fn root() { }