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