Reports lambda expressions with one callable reference.

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 }

After the quick-fix is applied:

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