blob: 94187d202521ef7596a36890479373114af4f013 [file] [log] [blame]
package format //@format("package")
import (
"runtime"
"fmt"
"log"
)
func hello() {
var x int //@diag("x", "x declared but not used")
}
func hi() {
runtime.GOROOT()
fmt.Printf("")
log.Printf("")
}