github.com/bananabytelabs/wazero@v0.0.0-20240105073314-54b22a776da8/internal/gojs/testdata/mem/main.go (about)

     1  package mem
     2  
     3  func Main() {
     4  	// Go compiles into Wasm with a 16MB heap.
     5  	// As there will be some used already, allocating 16MB should force growth.
     6  	_ = make([]byte, 16*1024*1024)
     7  }