2018-01-04 14:42:02 -06:00
|
|
|
#[no_mangle]
|
|
|
|
pub static NUMBER: i32 = 10;
|
2017-10-19 00:18:53 -04:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct Foo {
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar {
|
|
|
|
}
|
|
|
|
|
2018-01-04 14:42:02 -06:00
|
|
|
#[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]
|
2018-01-04 14:42:02 -06:00
|
|
|
pub extern "C" fn root() { }
|