cf98fb5612
The test compares stub trees built from .knm files directly and from the decompiled text. Test data for .class decompiler is reused, JVM-specific cases are ignored KT-61354
23 lines
318 B
Kotlin
Vendored
23 lines
318 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// KNM_K2_IGNORE
|
|
// KNM_FE10_IGNORE
|
|
|
|
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() {
|
|
}
|
|
}
|
|
}
|