1
0
mirror of https://github.com/golang/go synced 2024-09-25 05:20:13 -06:00
go/test/syntax/if.go
2011-02-22 18:23:29 -05:00

16 lines
299 B
Go

// errchk $G $D/$F.go
// Copyright 2011 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
func main() {
if { // ERROR "missing condition"
}
if x(); { // ERROR "missing condition"
}
}