summaryrefslogtreecommitdiff
path: root/test/typecheck/bad-if-condition-type-mismatch.txt
blob: 8d4218b3257daf2de439e4a16290326d54033f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; TOOL: wat2wasm
;;; ERROR: 1
(module
  (func
    f32.const 0
    if (result i32)
      i32.const 0
    else
      i32.const 0
    end
    drop)
)
(;; STDERR ;;;
out/test/typecheck/bad-if-condition-type-mismatch.txt:6:5: error: type mismatch in if, expected [i32] but got [f32]
    if (result i32)
    ^^
;;; STDERR ;;)