mirror of
https://github.com/golang/go
synced 2024-11-14 14:50:23 -07:00
d5a5855ba1
Fixes #1802. R=rsc CC=golang-dev https://golang.org/cl/5364043
7 lines
63 B
Go
7 lines
63 B
Go
package one
|
|
|
|
func Foo() (n int64, _ *int) {
|
|
return 42, nil
|
|
}
|
|
|