blob: ab5941bda5b71c817d86b72f653a166e8c05a8fd [file] [log] [blame]
Russ Cox2a01d722010-01-26 23:13:22 -08001// errchk $G -e $D/$F.go
2
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 Taylordb3ec4f2010-02-04 21:31:30 -080010 for x; y; z // ERROR "unexpected semicolon or newline before .?{.?|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