Reports a lambda expression with one callable reference because it is a common error to replace a lambda with a callable reference without changing curly braces to parentheses.

Example:

  listOf(1,2,3).map { it::toString }
Should be turned into

  listOf(1,2,3).map(Int::toString)