2012-02-16 21:48:57 -07:00
|
|
|
// run
|
2008-06-06 17:56:18 -06: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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-05-08 16:21:41 -06:00
|
|
|
import "os"
|
|
|
|
|
2008-06-06 17:56:18 -06:00
|
|
|
const (
|
2011-01-19 21:09:00 -07:00
|
|
|
x float64 = iota
|
|
|
|
g float64 = 4.5 * iota
|
|
|
|
)
|
2008-06-06 17:56:18 -06:00
|
|
|
|
2008-06-27 15:15:06 -06:00
|
|
|
func main() {
|
2011-01-19 21:09:00 -07:00
|
|
|
if g == 0.0 {
|
|
|
|
print("zero\n")
|
|
|
|
}
|
|
|
|
if g != 4.5 {
|
|
|
|
print(" fail\n")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2008-06-06 17:56:18 -06:00
|
|
|
}
|