blob: bcf5b93fa40e15f3b0e26285bb2faa215ce0697d [file] [log] [blame]
Russ Cox4cf77112009-01-30 14:39:31 -08001// errchk $G $D/$F.go
2
3// Copyright 2009 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
9var notmain func()
10
11func main() {
Russ Cox9dc22b62009-08-03 11:58:52 -070012 var x = &main; // ERROR "address of|invalid"
13 main = notmain; // ERROR "assign to|invalid"
Russ Cox4cf77112009-01-30 14:39:31 -080014}