Files
kotlin-fork/compiler/testData/ir/irText/firProblems/lambdaInEnumEntryConstructorCall.kt
T
Sergej Jaskiewicz addb048ce9 [FIR] Generate signatures for synthesized class delegation fields
This is to align the behavior with K1.

^KT-57754 Fixed

Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
2023-06-26 12:39:37 +00:00

22 lines
478 B
Kotlin
Vendored

// WITH_STDLIB
// DUMP_LOCAL_DECLARATION_SIGNATURES
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
// KT-50774
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57427
class Wrapper(var baseUrl: String)
enum class ConfigurationParameter {
BASE_URL(
{ value, nc ->
println("Base url updated from config parameters " + nc.baseUrl + " -> " + value)
nc.baseUrl = value
}
);
constructor(apply: (String, Wrapper) -> Unit) {}
}