diff options
Diffstat (limited to 'test/lit/wasm-split/export-name-already-exists.wast')
-rw-r--r-- | test/lit/wasm-split/export-name-already-exists.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/wasm-split/export-name-already-exists.wast b/test/lit/wasm-split/export-name-already-exists.wast index 83951795a..a83055da1 100644 --- a/test/lit/wasm-split/export-name-already-exists.wast +++ b/test/lit/wasm-split/export-name-already-exists.wast @@ -4,6 +4,6 @@ ;; CHECK: error: Export foo already exists. (module - (memory 0 0) - (export "foo" (memory 0 0)) + (memory $m 0 0) + (export "foo" (memory $m)) ) |