blob: 36254bc4ae52b25c4c2e35e92b0761b2f6f1ffdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(module
(func $shared-null (export "shared-null") (result (ref null (shared any)))
;; The shared null here should remain shared as we internalize it.
(any.convert_extern
(ref.null (shared noextern))
)
)
)
(assert_return (invoke "shared-null") (ref.null (shared any)))
|