Files
kotlin-fork/idea/testData/intentions/objectLiteralToLambda/ExplicitThis.kt
T

10 lines
164 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
<caret>object : Runnable {
override fun run() {
this.hashCode()
}
}.run()
}