blob: 1e6673cb641b9742a5f46f1a3f4bf559f3f7e606 [file] [log] [blame]
Russ Cox1163b1d2008-10-16 15:59:31 -07001// errchk $G $D/$F.go
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
Russ Cox9dc22b62009-08-03 11:58:52 -07009var a = []int { "a" }; // ERROR "conver|incompatible|cannot"
Russ Coxbe2edb52009-03-03 08:39:12 -080010var b = int { 1 }; // ERROR "compos"
Russ Cox1163b1d2008-10-16 15:59:31 -070011
12
Russ Coxf48cbfd2009-01-16 16:12:14 -080013func f() int
14
Russ Cox1163b1d2008-10-16 15:59:31 -070015func main() {
Russ Cox9dc22b62009-08-03 11:58:52 -070016 if f < 1 { } // ERROR "conver|incompatible|invalid"
Russ Cox1163b1d2008-10-16 15:59:31 -070017}