2012-02-18 20:28:53 -07:00
|
|
|
// run
|
2011-04-13 20:48:21 -06:00
|
|
|
|
|
|
|
// Copyright 2011 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
|
|
|
// Test closures in if conditions.
|
|
|
|
|
2011-04-13 20:48:21 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
2015-06-23 17:50:12 -06:00
|
|
|
if func() bool { return true }() {} // gc used to say this was a syntax error
|
2011-04-13 20:48:21 -06:00
|
|
|
if (func() bool { return true })() {}
|
|
|
|
if (func() bool { return true }()) {}
|
|
|
|
}
|
|
|
|
|