blob: e985a9c09c75946cb789d441914785cb635a4ac1 [file] [log] [blame]
Russ Cox57eb06f2012-02-16 23:51:04 -05001// errorcheck
Russ Cox9fc68732011-09-12 15:52:29 -04002
3// Copyright 2011 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9func main() {
10 if true {
Ian Lance Taylord5b7c512012-01-26 23:06:47 -080011 } else ; // ERROR "else must be followed by if or statement block|expected .if. or .{."
Russ Cox9fc68732011-09-12 15:52:29 -040012}