62e856956c
The result of k1/k2 should be similar here, the differences should be fixed by KT-60764
20 lines
281 B
Kotlin
Vendored
20 lines
281 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
class LocalClass {
|
|
private fun foo() = run {
|
|
class Local
|
|
|
|
Local()
|
|
}
|
|
|
|
private val bar = object {}
|
|
|
|
private val sam = Runnable {}
|
|
|
|
private val sub = object : Runnable {
|
|
override fun run() {
|
|
}
|
|
}
|
|
}
|