2008-10-16 16:59:31 -06:00
|
|
|
// errchk $G $D/$F.go
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-03-03 09:39:12 -07:00
|
|
|
var a = []int { "a" }; // ERROR "conver|incompatible"
|
|
|
|
var b = int { 1 }; // ERROR "compos"
|
2008-10-16 16:59:31 -06:00
|
|
|
|
|
|
|
|
2009-01-16 17:12:14 -07:00
|
|
|
func f() int
|
|
|
|
|
2008-10-16 16:59:31 -06:00
|
|
|
func main() {
|
2009-01-16 17:12:14 -07:00
|
|
|
if f < 1 { } // ERROR "conver|incompatible"
|
2008-10-16 16:59:31 -06:00
|
|
|
}
|