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