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