summaryrefslogtreecommitdiffstats
path: root/tests/ui/wasm/wasm-custom-section-relocations.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/wasm/wasm-custom-section-relocations.rs')
-rw-r--r--tests/ui/wasm/wasm-custom-section-relocations.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/wasm/wasm-custom-section-relocations.rs b/tests/ui/wasm/wasm-custom-section-relocations.rs
new file mode 100644
index 000000000..c3cca3a35
--- /dev/null
+++ b/tests/ui/wasm/wasm-custom-section-relocations.rs
@@ -0,0 +1,15 @@
+// only-wasm32
+
+#[link_section = "test"]
+pub static A: &[u8] = &[1]; //~ ERROR: no extra levels of indirection
+
+#[link_section = "test"]
+pub static B: [u8; 3] = [1, 2, 3];
+
+#[link_section = "test"]
+pub static C: usize = 3;
+
+#[link_section = "test"]
+pub static D: &usize = &C; //~ ERROR: no extra levels of indirection
+
+fn main() {}