]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/wasm-custom-section/foo.rs
Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyup
[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];