Files
kotlin-fork/idea/testData/refactoring/changeSignature/ThisReplacementBefore.kt
T

10 lines
174 B
Kotlin
Vendored

// CHECK_ERRORS_AFTER
class C {
fun f() {
fun Any.<caret>local() {
if (this is String) {
this.length()
}
}
}
}