2012-02-19 14:28:53 +11:00
|
|
|
// run
|
2011-04-13 22:48:21 -04:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-04-13 22:48:21 -04:00
|
|
|
// 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
|
|
|
// Test closures in if conditions.
|
|
|
|
|
2011-04-13 22:48:21 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
2015-06-24 09:50:12 +10:00
|
|
|
if func() bool { return true }() {} // gc used to say this was a syntax error
|
2011-04-13 22:48:21 -04:00
|
|
|
if (func() bool { return true })() {}
|
|
|
|
if (func() bool { return true }()) {}
|
|
|
|
}
|
|
|
|
|