2008-06-06 22:53:14 +00:00
|
|
|
// $G $F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
2008-06-27 21:15:06 +00:00
|
|
|
func main() {
|
2008-06-16 18:36:23 +00:00
|
|
|
count := 7;
|
|
|
|
if one := 1; {
|
|
|
|
count = count + one
|
2008-06-06 22:53:14 +00:00
|
|
|
}
|
2008-06-16 18:36:23 +00:00
|
|
|
if count != 8 {
|
|
|
|
print count, " should be 8\n";
|
2008-06-27 21:15:06 +00:00
|
|
|
sys.exit(1)
|
2008-06-16 18:36:23 +00:00
|
|
|
}
|
2008-06-06 22:53:14 +00:00
|
|
|
}
|