blob: c5958f5dd2c00a4e3d74c822807bdd8375bff07b [file] [log] [blame]
Russ Cox57eb06f2012-02-16 23:51:04 -05001// errorcheck
Russ Coxd6e4e182010-04-26 22:35:27 -07002
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
Ian Lance Taylorc30b5702010-09-09 22:40:25 -07009fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
Russ Coxd6e4e182010-04-26 22:35:27 -070010
11func main() {
12}
13
Ian Lance Taylorc30b5702010-09-09 22:40:25 -070014x++ // ERROR "non-declaration statement outside function body|expected declaration"
Russ Coxd6e4e182010-04-26 22:35:27 -070015
16func init() {
17}
18
Ian Lance Taylorc30b5702010-09-09 22:40:25 -070019x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
Russ Coxd6e4e182010-04-26 22:35:27 -070020