]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/wasm-custom-section/foo.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[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];