Currently the plugin ignores the cases when a function is called with invalid parameters types. For example, a function call in user function is not an error (from plugin's point of view):
func f(x, y int) int {
return x + y
}
func user() {
var x, y float64
_ := f(x, y)
}