blob: cf7d93ca54f33b9b7020014452295f53ce19b4cb [file] [log] [blame] [edit]
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: wasm-merge %s first %s.second second --rename-export-conflicts -all -S -o - | filecheck %s
;; Like start, but flipped - now only the first module has a start.
(module
;; CHECK: (type $none_=>_none (func))
;; CHECK: (export "start" (func $start_1))
;; CHECK: (start $start)
(start $start)
;; CHECK: (func $start (type $none_=>_none)
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $start
(drop
(i32.const 0)
)
)
)
;; CHECK: (func $start_1 (type $none_=>_none)
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (i32.const 1)
;; CHECK-NEXT: )
;; CHECK-NEXT: )