blob: ca070d8a577b70dac28289b1f1722fecdf139d51 [file] [log] [blame]
Russ Cox57eb06f2012-02-16 23:51:04 -05001// errorcheck
Russ Cox2a01d722010-01-26 23:13:22 -08002
3// Copyright 2010 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() {
Ian Lance Taylor161a45a2013-12-12 17:18:12 -080010 for x; y; z // ERROR "missing .*{.* after for clause|undefined"
Russ Cox2a01d722010-01-26 23:13:22 -080011 {
Ian Lance Taylordb3ec4f2010-02-04 21:31:30 -080012 z // GCCGO_ERROR "undefined"
Russ Cox2a01d722010-01-26 23:13:22 -080013
14