2012-02-16 21:50:37 -07:00
|
|
|
// run
|
2009-01-26 18:37:05 -07: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-18 20:28:53 -07:00
|
|
|
// Simple test of the garbage collector.
|
|
|
|
|
2009-01-26 18:37:05 -07:00
|
|
|
package main
|
|
|
|
|
2010-02-03 17:31:34 -07:00
|
|
|
import "runtime"
|
2009-01-26 18:37:05 -07:00
|
|
|
|
|
|
|
func mk2() {
|
2010-02-03 17:31:34 -07:00
|
|
|
b := new([10000]byte)
|
|
|
|
_ = b
|
2010-09-03 18:36:13 -06:00
|
|
|
// println(b, "stored at", &b)
|
2009-01-26 18:37:05 -07:00
|
|
|
}
|
|
|
|
|
2010-02-03 17:31:34 -07:00
|
|
|
func mk1() { mk2() }
|
2009-01-26 18:37:05 -07:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
for i := 0; i < 10; i++ {
|
2010-02-03 17:31:34 -07:00
|
|
|
mk1()
|
|
|
|
runtime.GC()
|
2009-01-26 18:37:05 -07:00
|
|
|
}
|
|
|
|
}
|