mirror of
https://github.com/golang/go
synced 2024-11-17 07:54:41 -07:00
feaa9ed10a
Fixes #2678 R=rsc CC=golang-dev https://golang.org/cl/5529066
7 lines
136 B
Go
7 lines
136 B
Go
package one
|
|
|
|
type file int
|
|
func (file *file) isnil() bool { return file == nil }
|
|
func (fil *file) isnil2() bool { return fil == nil }
|
|
|