]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/issue-47384/lib.rs
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[rust.git] / src / test / run-make / issue-47384 / lib.rs
1 mod foo {
2     #[link_section = ".rodata.STATIC"]
3     #[used]
4     static STATIC: [u32; 10] = [1; 10];
5 }
6
7 mod bar {
8     #[no_mangle]
9     extern "C" fn bar() -> i32 {
10         0
11     }
12 }