2012-02-16 23:50:37 -05:00
|
|
|
// run
|
2011-04-26 00:57:03 -04:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-04-26 00:57:03 -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 evaluation order in if condition.
|
|
|
|
|
2011-04-26 00:57:03 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
var calledf = false
|
|
|
|
|
|
|
|
func f() int {
|
|
|
|
calledf = true
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func g() int {
|
|
|
|
if !calledf {
|
2013-02-12 13:17:49 -05:00
|
|
|
panic("BUG: func7 - called g before f")
|
2011-04-26 00:57:03 -04:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2015-06-24 09:50:12 +10:00
|
|
|
// gc used to evaluate g() before f().
|
2011-04-26 00:57:03 -04:00
|
|
|
if f() < g() {
|
|
|
|
panic("wrong answer")
|
|
|
|
}
|
|
|
|
}
|