]> Cypherpunks repositories - gostls13.git/commitdiff
The compiler should reject comparisons between ints and nil.
authorIan Lance Taylor <iant@golang.org>
Tue, 18 Nov 2008 05:44:05 +0000 (21:44 -0800)
committerIan Lance Taylor <iant@golang.org>
Tue, 18 Nov 2008 05:44:05 +0000 (21:44 -0800)
R=gri
DELTA=8  (8 added, 0 deleted, 0 changed)
OCL=19434
CL=19436

test/bugs/bug124.go [new file with mode: 0644]

diff --git a/test/bugs/bug124.go b/test/bugs/bug124.go
new file mode 100644 (file)
index 0000000..62ea517
--- /dev/null
@@ -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 
+}