Commit 1945cc4c authored by Ian Lance Taylor's avatar Ian Lance Taylor

The compiler should reject comparisons between ints and nil.

R=gri
DELTA=8  (8 added, 0 deleted, 0 changed)
OCL=19434
CL=19436
parent 654bc2ba
// 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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment