diff options
Diffstat (limited to '')
-rw-r--r-- | test/fixedbugs/bug222.dir/chanbug.go | 9 | ||||
-rw-r--r-- | test/fixedbugs/bug222.dir/chanbug2.go | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/fixedbugs/bug222.dir/chanbug.go b/test/fixedbugs/bug222.dir/chanbug.go new file mode 100644 index 0000000..1692024 --- /dev/null +++ b/test/fixedbugs/bug222.dir/chanbug.go @@ -0,0 +1,9 @@ +// 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 + +package chanbug +var C chan<- (chan int) +var D chan<- func() +var E func() chan int +var F func() (func()) diff --git a/test/fixedbugs/bug222.dir/chanbug2.go b/test/fixedbugs/bug222.dir/chanbug2.go new file mode 100644 index 0000000..b6c416f --- /dev/null +++ b/test/fixedbugs/bug222.dir/chanbug2.go @@ -0,0 +1,7 @@ +// 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 + +package Bar + +import _ "./chanbug" |