Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/syntheticJavaProperty_sameClassNestedReceiver.kt
T
2018-06-05 15:52:16 +03:00

10 lines
143 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
fun test() {
Foo().apply {
Foo().run {
<caret>this@apply.isB = true
}
}
}