qax-os / goreporter

A Golang tool that does static analysis, unit testing, code review and generate code quality report.
Apache License 2.0
3.13k stars 273 forks source link

dead code not work #76

Open wusphinx opened 5 years ago

wusphinx commented 5 years ago

code example

package main

func main() {
    println("test report")
}

func Report() {
    println("report func")
}

Obviously, the function Report is unused, but goreporter didn't check it, and showed as below image