mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
182 B
Rust
13 lines
182 B
Rust
mod foo {
|
|
#[link_section = ".rodata.STATIC"]
|
|
#[used]
|
|
static STATIC: [u32; 10] = [1; 10];
|
|
}
|
|
|
|
mod bar {
|
|
#[no_mangle]
|
|
extern "C" fn bar() -> i32 {
|
|
0
|
|
}
|
|
}
|