]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/convert3.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / convert3.go
index 5f1f0dd94e68f06c5923b03cf157d42d29dae809..143aff04f6a472e7bb2728208ad30e4b1d93ac55 100644 (file)
@@ -1,9 +1,12 @@
-// errchk $G $D/$F.go
+// errorcheck
 
 // 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.
 
+// Verify allowed and disallowed conversions.
+// Does not compile.
+
 package main
 
 // everything here is legal except the ERROR line
@@ -13,8 +16,8 @@ var d1 chan<- int = c
 var d2 = (chan<- int)(c)
 
 var e *[4]int
-var f1 []int = e
-var f2 = []int(e)
+var f1 []int = e[0:]
+var f2 = []int(e[0:])
 
 var g = []int(nil)