mirror of
https://github.com/golang/go
synced 2024-11-19 09:04:41 -07:00
10 lines
187 B
Go
10 lines
187 B
Go
|
package broken
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func unclosedIf() {
|
||
|
if false {
|
||
|
var myUnclosedIf string //@myUnclosedIf
|
||
|
fmt.Printf("s = %v\n", myUnclosedIf) //@godef("my", myUnclosedIf)
|
||
|
}
|