gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/redeclaration5.go (about) 1 package main 2 3 func main() { 4 type foo struct{ 5 yolo string 6 } 7 8 type foo struct{} 9 var bar foo 10 println(bar) 11 } 12 13 // Error: 14 // ../_test/redeclaration5.go:8:7: foo redeclared in this block