]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/wasm-custom-section/foo.rs
Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into sync_cg_clif-2021-12-31
[rust.git] / src / test / run-make / wasm-custom-section / foo.rs
1 #![crate_type = "rlib"]
2 #![deny(warnings)]
3
4 #[link_section = "foo"]
5 pub static A: [u8; 2] = [1, 2];
6
7 #[link_section = "bar"]
8 pub static B: [u8; 2] = [3, 4];