mirror of
https://github.com/golang/go
synced 2024-11-18 00:14:47 -07:00
1945cc4c3c
R=gri DELTA=8 (8 added, 0 deleted, 0 changed) OCL=19434 CL=19436
13 lines
291 B
Go
13 lines
291 B
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.
|
|
|
|
// ! errchk $G $D/$F.go
|
|
package main
|
|
func fn(i int) bool {
|
|
if i == nil { // ERROR "type"
|
|
return true
|
|
}
|
|
return false
|
|
}
|