1
0
mirror of https://github.com/golang/go synced 2024-11-18 00:14:47 -07:00
go/test/bugs/bug124.go
Ian Lance Taylor 1945cc4c3c The compiler should reject comparisons between ints and nil.
R=gri
DELTA=8  (8 added, 0 deleted, 0 changed)
OCL=19434
CL=19436
2008-11-17 21:44:05 -08:00

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
}