summaryrefslogtreecommitdiff
path: root/test/lit/validation/global-cycle.wast
blob: acba9a3b674857433f25b3fe0697647b3e0c92e2 (plain)
1
2
3
4
5
6
7
8
;; RUN: not wasm-opt %s -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))
)