diff options
Diffstat (limited to 'tests/ui/wasm-custom-section-relocations.stderr')
-rw-r--r-- | tests/ui/wasm-custom-section-relocations.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/wasm-custom-section-relocations.stderr b/tests/ui/wasm-custom-section-relocations.stderr new file mode 100644 index 000000000..a37edc51d --- /dev/null +++ b/tests/ui/wasm-custom-section-relocations.stderr @@ -0,0 +1,14 @@ +error: statics with a custom `#[link_section]` must be a simple list of bytes on the wasm target with no extra levels of indirection such as references + --> $DIR/wasm-custom-section-relocations.rs:4:1 + | +LL | pub static A: &[u8] = &[1]; + | ^^^^^^^^^^^^^^^^^^^ + +error: statics with a custom `#[link_section]` must be a simple list of bytes on the wasm target with no extra levels of indirection such as references + --> $DIR/wasm-custom-section-relocations.rs:13:1 + | +LL | pub static D: &usize = &C; + | ^^^^^^^^^^^^^^^^^^^^ + +error: aborting due to 2 previous errors + |