2012-02-16 23:50:37 -05:00
|
|
|
// run
|
2009-01-26 17:37:05 -08:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-19 14:28:53 +11:00
|
|
|
// Simple test of the garbage collector.
|
|
|
|
|
2009-01-26 17:37:05 -08:00
|
|
|
package main
|
|
|
|
|
2010-02-03 16:31:34 -08:00
|
|
|
import "runtime"
|
2009-01-26 17:37:05 -08:00
|
|
|
|
|
|
|
func mk2() {
|
2010-02-03 16:31:34 -08:00
|
|
|
b := new([10000]byte)
|
|
|
|
_ = b
|
2010-09-04 10:36:13 +10:00
|
|
|
// println(b, "stored at", &b)
|
2009-01-26 17:37:05 -08:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:31:34 -08:00
|
|
|
func mk1() { mk2() }
|
2009-01-26 17:37:05 -08:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
for i := 0; i < 10; i++ {
|
2010-02-03 16:31:34 -08:00
|
|
|
mk1()
|
|
|
|
runtime.GC()
|
2009-01-26 17:37:05 -08:00
|
|
|
}
|
|
|
|
}
|