85c53bc24e
^KT-48784 Fixed
15 lines
309 B
Kotlin
Vendored
15 lines
309 B
Kotlin
Vendored
open class Base(parameter: String)
|
|
|
|
fun foo(captured: String) {
|
|
object : Base(captured) {
|
|
// val x = captured
|
|
// init { println(captured) }
|
|
}
|
|
}
|
|
|
|
// JVM_TEMPLATES
|
|
// 1 final synthetic Ljava/lang/String; \$captured
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 0 final synthetic Ljava/lang/String; \$captured
|