Reports labeled returns used on the last expressions in lambdas.

Such returns are redundant and can be safely removed.

Example:


fun foo() {
  listOf(1,2,3).find {
    return@find true
  }
}

After the quick-fix is applied:


fun foo() {
  listOf(1,2,3).find {
    true
  }
}