2012-02-16 21:51:04 -07:00
|
|
|
// errorcheck
|
2010-12-09 11:41:24 -07:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-12-09 11:41:24 -07:00
|
|
|
// 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
|
2015-11-04 10:21:49 -07:00
|
|
|
} // ERROR "unexpected .*}.* in channel type|missing channel element type"
|
2010-12-09 11:41:24 -07:00
|
|
|
|
2015-11-04 10:21:49 -07:00
|
|
|
func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
|
2010-12-09 11:41:24 -07:00
|
|
|
}
|
|
|
|
|
2015-11-04 10:21:49 -07:00
|
|
|
func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
|
2010-12-09 11:41:24 -07:00
|
|
|
}
|