code cleanup can replace infix calls to library functions with ordinary calls
#KT-9976 Fixed
This commit is contained in:
@@ -83,3 +83,7 @@ fun test(a: AAA, b: BBB) {
|
||||
a.foo()
|
||||
}
|
||||
}
|
||||
|
||||
fun infixTest() {
|
||||
arrayListOf(1, 2, 3) map { it }
|
||||
}
|
||||
|
||||
@@ -83,3 +83,7 @@ fun test(a: AAA, b: BBB) {
|
||||
(a.foo)()
|
||||
}
|
||||
}
|
||||
|
||||
fun infixTest() {
|
||||
arrayListOf(1, 2, 3).map { it }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user