2012-02-17 04:48:57 +00:00
|
|
|
// errorcheck
|
2009-06-19 21:00:39 +00:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-19 02:19:43 +00:00
|
|
|
// Verify allowed and disallowed conversions.
|
|
|
|
// Does not compile.
|
|
|
|
|
2009-06-19 21:00:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
// everything here is legal except the ERROR line
|
|
|
|
|
|
|
|
var c chan int
|
|
|
|
var d1 chan<- int = c
|
|
|
|
var d2 = (chan<- int)(c)
|
|
|
|
|
|
|
|
var e *[4]int
|
2010-08-31 14:34:01 +00:00
|
|
|
var f1 []int = e[0:]
|
|
|
|
var f2 = []int(e[0:])
|
2009-06-19 21:00:39 +00:00
|
|
|
|
|
|
|
var g = []int(nil)
|
|
|
|
|
2010-06-09 01:50:02 +00:00
|
|
|
type H []int
|
2009-06-19 21:00:39 +00:00
|
|
|
type J []int
|
2010-06-09 01:50:02 +00:00
|
|
|
|
2009-06-19 21:00:39 +00:00
|
|
|
var h H
|
2010-06-09 01:50:02 +00:00
|
|
|
var j1 J = h // ERROR "compat|illegal|cannot"
|
2009-06-19 21:00:39 +00:00
|
|
|
var j2 = J(h)
|