mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
1103d78c84
func4.go:8:11: error: invalid operand for unary '&' func4.go:9:8: error: invalid left hand side of assignment R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=24294 CL=24603
15 lines
344 B
Go
15 lines
344 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
var notmain func()
|
|
|
|
func main() {
|
|
var x = &main; // ERROR "address of function|invalid"
|
|
main = notmain; // ERROR "assign to function|invalid"
|
|
}
|