mirror of
https://github.com/golang/go
synced 2024-11-22 05:44:41 -07: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:
parent
654bc2badc
commit
1945cc4c3c
12
test/bugs/bug124.go
Normal file
12
test/bugs/bug124.go
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user