aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue8761.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue8761.go')
-rw-r--r--test/fixedbugs/issue8761.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixedbugs/issue8761.go b/test/fixedbugs/issue8761.go
index 7f458f7f03..e5130e1ff5 100644
--- a/test/fixedbugs/issue8761.go
+++ b/test/fixedbugs/issue8761.go
@@ -10,17 +10,17 @@
package p
-func _() {
+func f1() {
type C chan int
_ = [1][]C{[]C{make(chan int)}}
}
-func _() {
+func f2() {
type C interface{}
_ = [1][]C{[]C{recover()}}
}
-func _() {
+func f3() {
type C *int
_ = [1][]C{[]C{new(int)}}
}