kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

bulk_memory_oob.wat (208B)


      1 (module
      2   (memory 1)
      3   (func (export "test_main") (result i32)
      4     ;; memory.copy with dst past the end of memory traps.
      5     i32.const 65530
      6     i32.const 0
      7     i32.const 32
      8     memory.copy
      9     i32.const 0))