diff options
Diffstat (limited to 'test/reduce/gc.wast.txt')
-rw-r--r-- | test/reduce/gc.wast.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/reduce/gc.wast.txt b/test/reduce/gc.wast.txt new file mode 100644 index 000000000..3af5287ce --- /dev/null +++ b/test/reduce/gc.wast.txt @@ -0,0 +1,16 @@ +(module + (type $0 (struct (field (mut i32)) (field funcref))) + (type $1 (func (result i32))) + (global $global$0 (ref null $0) (struct.new_default $0)) + (export "use-global" (func $0)) + (func $0 (result i32) + (struct.set $0 0 + (global.get $global$0) + (i32.const 42) + ) + (struct.get $0 0 + (global.get $global$0) + ) + ) +) + |