blob: 9a5d6af5d884b30e5237c3c01c20e6290f26fa11 [file]
// TARGET_BACKEND: JVM
// ISSUE: KT-65341
val nodeTransformer =
single {
fun getConstructorParameterValue(kParameter: String) {
if (true) {
throw java.lang.IllegalStateException("${kParameter!!}")
}
}
}
fun <Output> single(
singleConstructor: (NodeTransformer1<Output>) -> Output?
) {
}
class NodeTransformer1<Output>
fun box(): String {
// Just making sure that for the original case the whole compiler pipeline is successfully completed
return "OK"
}