summaryrefslogtreecommitdiff
path: root/test/ctor-eval/global-get-init.wast
blob: 125e672d6c5ab328f7aa1e601aacfb05a180de9f (plain)
1
2
3
4
5
6
7
8
(module
  (import "import" "global" (global $imported i32))
  (func $test1 (export "test1")
    ;; This should be safe to eval in theory, but the imported global stops us,
    ;; so this function will not be optimized out.
    ;; TODO: perhaps if we never use that global that is ok?
  )
)