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