blob: f4689443cf1415be71abe719d0c89aaebdecba76 [file] [log] [blame]
Russ Coxd2cc9882012-02-16 23:50:37 -05001// errorcheck
Gustavo Niemeyerdaffc2d2011-03-02 16:18:17 -05002
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
Rob Pike501f0b52012-02-23 18:47:26 +11007// Verify that erroneous use of init is detected.
8// Does not compile.
9
Gustavo Niemeyerdaffc2d2011-03-02 16:18:17 -050010package main
11
12import "runtime"
13
14func init() {
15}
16
17func main() {
Ian Lance Taylord607cb22011-03-26 11:24:02 -070018 init() // ERROR "undefined.*init"
Gustavo Niemeyerdaffc2d2011-03-02 16:18:17 -050019 runtime.init() // ERROR "unexported.*runtime\.init"
Ian Lance Taylord607cb22011-03-26 11:24:02 -070020 var _ = init // ERROR "undefined.*init"
Gustavo Niemeyerdaffc2d2011-03-02 16:18:17 -050021}