From: Ian Lance Taylor Date: Tue, 18 Nov 2008 05:44:05 +0000 (-0800) Subject: The compiler should reject comparisons between ints and nil. X-Git-Tag: weekly.2009-11-06~2701 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1945cc4c3c10caeeced798695416f1323286bc51;p=gostls13.git The compiler should reject comparisons between ints and nil. R=gri DELTA=8 (8 added, 0 deleted, 0 changed) OCL=19434 CL=19436 --- diff --git a/test/bugs/bug124.go b/test/bugs/bug124.go new file mode 100644 index 0000000000..62ea5172b7 --- /dev/null +++ b/test/bugs/bug124.go @@ -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 +}