summaryrefslogtreecommitdiff
path: root/test/lit/validation/global-cycle.wast
blob: 1887e5716ef8430459eee2bd8c0cd8d0c1311d1d (plain)
1
2
3
4
5
6
7
8
;; RUN: not wasm-opt %s --new-wat-parser -all 2>&1 | filecheck %s

;; CHECK: global initializer should only refer to previous globals

(module
  (global $a i32 (global.get $b))
  (global $b i32 (global.get $a))
)