Files
kotlin-fork/idea/testData/inspectionsLocal/moveSuspiciousCallableReferenceIntoParentheses/implicitThisReceiver.kt
T
2018-03-21 09:30:17 +03:00

8 lines
135 B
Kotlin
Vendored

// WITH_RUNTIME
class Test {
fun function(s: String): Boolean = true
fun test() {
"".let {<caret> ::function }
}
}