mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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 }
|
||
|
|
|