Files
kotlin-fork/idea/resources/intentionDescriptions/SamConversionToAnonymousObjectIntention/after.kt.template
T

8 lines
96 B
Plaintext

val runnable = object : Runnable {
override fun run() {
foo()
}
}
fun foo() {
}