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

10 lines
159 B
Kotlin
Vendored

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