1package broken
2
3import "fmt"
4
5func unclosedIf() {
6	if false {
7		var myUnclosedIf string              //@myUnclosedIf
8		fmt.Printf("s = %v\n", myUnclosedIf) //@godef("my", myUnclosedIf)
9}
10