mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
add code to handle programs which use heap allocations but never hit the GC
This commit is contained in:
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
func main() {
|
||||
p := []byte{}
|
||||
for len(p) >= 1 {
|
||||
p = p[1:]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user