summaryrefslogtreecommitdiff
path: root/test/lit/merge/export_options.wat.second
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/merge/export_options.wat.second')
-rw-r--r--test/lit/merge/export_options.wat.second15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/lit/merge/export_options.wat.second b/test/lit/merge/export_options.wat.second
new file mode 100644
index 000000000..adcc24bd2
--- /dev/null
+++ b/test/lit/merge/export_options.wat.second
@@ -0,0 +1,15 @@
+(module
+ (func $func1 (export "func")
+ ;; This export will conflict.
+ (drop
+ (i32.const 1)
+ )
+ )
+
+ (func $func2 (export "other")
+ ;; This export will not conflict.
+ (drop
+ (i32.const 2)
+ )
+ )
+)