gc: make sure main.main has correct type

R=ken2
CC=golang-dev
https://golang.org/cl/883049
This commit is contained in:
Russ Cox 2010-04-11 14:51:35 -07:00
parent d77010547d
commit fe7826858c
2 changed files with 10 additions and 3 deletions

View file

@ -6,6 +6,6 @@
package main
func main (x int) { // GCCGO_ERROR "previous"
func f (x int) { // GCCGO_ERROR "previous"
var x int; // ERROR "redecl|redefinition"
}