RedundantLambdaArrowInspection: fix false positive when receiver is qualified expression
#KT-37502 Fixed
This commit is contained in:
committed by
Ilya Kirillov
parent
487e1ddddc
commit
e5b4b03314
@@ -0,0 +1,8 @@
|
||||
// PROBLEM: none
|
||||
object A {
|
||||
fun <T> foo(f: (T) -> Int) {}
|
||||
}
|
||||
|
||||
fun test() {
|
||||
A.foo { <caret>_: String -> 24 }
|
||||
}
|
||||
Reference in New Issue
Block a user