summaryrefslogtreecommitdiff
path: root/test/lit/wasm-split/export-name-already-exists.wast
blob: 83951795a2f2d69a9c8a7f251e7a821806ff54e3 (plain)
1
2
3
4
5
6
7
8
9
;; RUN: not wasm-split %s --instrument --profile-export=foo 2>&1 \
;; RUN:   | filecheck %s

;; CHECK: error: Export foo already exists.

(module
  (memory 0 0)
  (export "foo" (memory 0 0))
)