2012-02-16 21:51:04 -07:00
|
|
|
// errorcheck
|
2010-12-09 11:41:24 -07:00
|
|
|
|
|
|
|
// Copyright 2010 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
|
|
|
|
|
|
|
|
type xyz struct {
|
|
|
|
ch chan
|
2011-03-29 07:47:39 -06:00
|
|
|
} // ERROR "unexpected .*}.* in channel type"
|
2010-12-09 11:41:24 -07:00
|
|
|
|
2011-03-29 07:47:39 -06:00
|
|
|
func Foo(y chan) { // ERROR "unexpected .*\).* in channel type"
|
2010-12-09 11:41:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func Bar(x chan, y int) { // ERROR "unexpected comma in channel type"
|
|
|
|
}
|