Reports unused unexported functions.

In Go, a function is unexported if it begins with a small letter. Names of unexported functions that were defined but never used are grayed out.

// Unused unexported function
func unExportedUnusedFunc()  {

}

func main() {
 fmt.Println("Hello")
}