2012-02-16 21:50:37 -07:00
|
|
|
// run
|
2008-06-06 15:27:34 -06: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-23 22:24:24 -07:00
|
|
|
// Test simple function literals.
|
2008-06-06 15:27:34 -06:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func
|
2009-12-10 13:53:23 -07:00
|
|
|
main() {
|
2008-06-06 15:27:34 -06:00
|
|
|
x := func(a int)int {
|
|
|
|
x := func(a int)int {
|
|
|
|
x := func(a int)int {
|
|
|
|
return a+5;
|
|
|
|
};
|
|
|
|
return x(a)+7;
|
|
|
|
};
|
|
|
|
return x(a)+11;
|
|
|
|
};
|
2008-08-11 23:07:49 -06:00
|
|
|
if x(3) != 3+5+7+11 { panic(x(3)); }
|
2008-06-06 15:27:34 -06:00
|
|
|
}
|