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