mirror of
https://github.com/golang/go
synced 2024-11-11 23:50:22 -07:00
6ae1df9b99
convlit1.go:6:15: error: composite literal requires array, map, or struct type convlit1.go:5:16: error: incompatible type for element 0 in composite literal convlit1.go:10:15: error: incompatible types in binary expression R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=17506 CL=17509
16 lines
358 B
Go
16 lines
358 B
Go
// 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"
|
|
var b = int { 1 }; // ERROR "compos"
|
|
|
|
|
|
func main() {
|
|
if sys.argc < 1 { } // ERROR "conver|incompatible"
|
|
}
|