* interp: detect local redecleration Fixes #666 * make make check happy * fix typo in filenames, add them to the exclusion list Co-authored-by: Marc Vertes <mvertes@free.fr>
15 lines
187 B
Go
15 lines
187 B
Go
package main
|
|
|
|
func main() {
|
|
type foo struct{
|
|
yolo string
|
|
}
|
|
|
|
type foo struct{}
|
|
var bar foo
|
|
println(bar)
|
|
}
|
|
|
|
// Error:
|
|
// ../_test/redeclaration5.go:8:7: foo redeclared in this block
|