github.com/wasilibs/wazerox@v0.0.0-20240124024944-4923be63ab5f/internal/integration_test/fuzzcases/testdata/720.wat (about)

     1  (module
     2    (func (export "access memory after table.grow") (result i32)
     3      ref.null extern
     4      i32.const 10
     5      table.grow 0
     6      ;; This should work without any problem,
     7      ;; and should return non-trivial i32 result.
     8      i32.load offset=396028 align=1
     9    )
    10  
    11    ;; Table and memory are as-is produced by fuzzer.
    12    (table 1 264 externref)
    13    (memory 10 10)
    14  
    15    ;; Setup the non trivial content on the i32.load
    16    (data (i32.const 396028) "\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff\ff")
    17  )