10 lines
164 B
Kotlin
Vendored
10 lines
164 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
<caret>object : Runnable {
|
|
override fun run() {
|
|
this.hashCode()
|
|
}
|
|
}.run()
|
|
} |