diff options
Diffstat (limited to 'src/test/run-make/wasm-custom-section/foo.rs')
-rw-r--r-- | src/test/run-make/wasm-custom-section/foo.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/run-make/wasm-custom-section/foo.rs b/src/test/run-make/wasm-custom-section/foo.rs new file mode 100644 index 000000000..61f81f024 --- /dev/null +++ b/src/test/run-make/wasm-custom-section/foo.rs @@ -0,0 +1,8 @@ +#![crate_type = "rlib"] +#![deny(warnings)] + +#[link_section = "foo"] +pub static A: [u8; 2] = [1, 2]; + +#[link_section = "bar"] +pub static B: [u8; 2] = [3, 4]; |