2012-02-18 14:15:42 -07:00
|
|
|
// compile
|
2009-11-19 01:04:30 -07: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-03 12:43:24 -07:00
|
|
|
package bug219
|
2009-11-19 01:04:30 -07:00
|
|
|
|
|
|
|
func f(func()) int { return 0 }
|
|
|
|
|
|
|
|
// this doesn't work:
|
|
|
|
// bug219.go:16: syntax error near if
|
|
|
|
func g1() {
|
|
|
|
if x := f(func() {
|
2011-02-22 16:23:14 -07:00
|
|
|
if true {}
|
|
|
|
}); true {
|
2010-01-08 00:24:48 -07:00
|
|
|
_ = x;
|
2009-11-19 01:04:30 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this works
|
|
|
|
func g2() {
|
|
|
|
if x := f(func() {
|
2011-02-22 16:23:14 -07:00
|
|
|
//if true {}
|
|
|
|
}); true {
|
2010-01-08 00:24:48 -07:00
|
|
|
_ = x;
|
2009-11-19 01:04:30 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this works
|
|
|
|
func g3() {
|
|
|
|
x := f(func() {
|
2011-02-22 16:23:14 -07:00
|
|
|
if true {}
|
2009-11-19 01:04:30 -07:00
|
|
|
});
|
2011-02-22 16:23:14 -07:00
|
|
|
if true {
|
2010-01-08 00:24:48 -07:00
|
|
|
_ = x;
|
2009-11-19 01:04:30 -07:00
|
|
|
}
|
|
|
|
}
|