summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-12-03 00:10:32 -0800
committerRuss Cox <rsc@golang.org>2009-12-03 00:10:32 -0800
commit31d4eb6c6ab65a8b3911f759aa86a88006263a69 (patch)
tree3a736fd65ac778e46997d6f30f843bc78f12ab4c /test
parent386f71d6e0fb5e326f578f16a983ce8b28304551 (diff)
downloadgo-31d4eb6c6ab65a8b3911f759aa86a88006263a69.tar.gz
gc: minor import grammar bug fixes
Fixes issue 364. R=ken2 http://codereview.appspot.com/164092
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/bug222.dir/chanbug.go5
-rw-r--r--test/fixedbugs/bug222.dir/chanbug2.go2
-rw-r--r--test/fixedbugs/bug222.go7
3 files changed, 14 insertions, 0 deletions
diff --git a/test/fixedbugs/bug222.dir/chanbug.go b/test/fixedbugs/bug222.dir/chanbug.go
new file mode 100644
index 000000000..9194927b5
--- /dev/null
+++ b/test/fixedbugs/bug222.dir/chanbug.go
@@ -0,0 +1,5 @@
+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 000000000..73e16678e
--- /dev/null
+++ b/test/fixedbugs/bug222.dir/chanbug2.go
@@ -0,0 +1,2 @@
+package Bar
+import _ "chanbug"
diff --git a/test/fixedbugs/bug222.go b/test/fixedbugs/bug222.go
new file mode 100644
index 000000000..5c23a533d
--- /dev/null
+++ b/test/fixedbugs/bug222.go
@@ -0,0 +1,7 @@
+// $G $D/$F.dir/chanbug.go && $G -I. $D/$F.dir/chanbug2.go
+
+// 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.
+
+ignored