]> 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 d733ce2c30a7f54462d8e165f04d7cb57d0efb6e..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,13 +16,14 @@ 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)
 
-type H *[4]int
+type H []int
 type J []int
+
 var h H
-var j1 J = h   // ERROR "compat|illegal"
+var j1 J = h // ERROR "compat|illegal|cannot"
 var j2 = J(h)