summaryrefslogtreecommitdiffstats
path: root/tests/run-make/wasm-custom-section/foo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/wasm-custom-section/foo.rs')
-rw-r--r--tests/run-make/wasm-custom-section/foo.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run-make/wasm-custom-section/foo.rs b/tests/run-make/wasm-custom-section/foo.rs
new file mode 100644
index 000000000..61f81f024
--- /dev/null
+++ b/tests/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];