1
0
mirror of https://github.com/golang/go synced 2024-09-25 05:20:13 -06:00

The compiler should reject comparisons between ints and nil.

R=gri
DELTA=8  (8 added, 0 deleted, 0 changed)
OCL=19434
CL=19436
This commit is contained in:
Ian Lance Taylor 2008-11-17 21:44:05 -08:00
parent 654bc2badc
commit 1945cc4c3c

12
test/bugs/bug124.go Normal file
View File

@ -0,0 +1,12 @@
// 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
}