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