diff options
Diffstat (limited to 'gcc/testsuite/go.test/test/convlit1.go')
-rw-r--r-- | gcc/testsuite/go.test/test/convlit1.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/go.test/test/convlit1.go b/gcc/testsuite/go.test/test/convlit1.go new file mode 100644 index 00000000000..1e6673cb641 --- /dev/null +++ b/gcc/testsuite/go.test/test/convlit1.go @@ -0,0 +1,17 @@ +// 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 + +var a = []int { "a" }; // ERROR "conver|incompatible|cannot" +var b = int { 1 }; // ERROR "compos" + + +func f() int + +func main() { + if f < 1 { } // ERROR "conver|incompatible|invalid" +} |