summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug469.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug469.go')
-rw-r--r--test/fixedbugs/bug469.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/fixedbugs/bug469.go b/test/fixedbugs/bug469.go
deleted file mode 100644
index 71157a4c4..000000000
--- a/test/fixedbugs/bug469.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// compile
-
-// Copyright 2012 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.
-
-// The gccgo compiler would complain about a redefinition of i, but
-// the spec imposes no requirements on parameter names in a function
-// type.
-
-package p
-
-type F func(i int) (i int)