Files
kotlin-fork/idea/testData/refactoring/changeSignature/ThisReplacementBefore.kt
T
2015-10-14 20:39:35 +03:00

10 lines
172 B
Kotlin
Vendored

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