blob: 443bc89560f4092b45b7482111616e7dbc6b2975 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(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))
)
)
(func $shared-null-rev (export "shared-null-rev") (result (ref null (shared extern)))
;; As before, but the reverse conversion.
(extern.convert_any
(ref.null (shared any))
)
)
)
(assert_return (invoke "shared-null") (ref.null (shared any)))
(assert_return (invoke "shared-null-rev") (ref.null (shared extern)))
|