blob: 46dad338e0482d1b94f5107f30164122b3a96c24 [file] [log] [blame]
//go:build nobuild || OMIT
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
}
func main() {
fmt.Println(Sqrt(2))
}