Files
tinygo/testdata/zeroalloc.go
T

8 lines
78 B
Go

package main
func main() {
p := []byte{}
for len(p) >= 1 {
p = p[1:]
}
}