mirror of
https://github.com/golang/go
synced 2024-11-19 01:54:39 -07:00
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 }
|
||
|
|