summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/wasm-custom-section/bar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/wasm-custom-section/bar.rs')
-rw-r--r--src/test/run-make/wasm-custom-section/bar.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/run-make/wasm-custom-section/bar.rs b/src/test/run-make/wasm-custom-section/bar.rs
deleted file mode 100644
index c95f3e143..000000000
--- a/src/test/run-make/wasm-custom-section/bar.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-#![crate_type = "cdylib"]
-#![deny(warnings)]
-
-extern crate foo;
-
-#[link_section = "foo"]
-pub static A: [u8; 2] = [5, 6];
-
-#[link_section = "baz"]
-pub static B: [u8; 2] = [7, 8];
-
-#[no_mangle]
-pub extern fn foo() {}