blob: 68c334d1c7c9ca2b944a197410749412ef9a5906 [file] [log] [blame]
// +build no-build OMIT
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
}
func main() {
fmt.Println(Sqrt(2))
}