blob: 779572cb64ebf6646570a64a308442c96b9bcad2 [file]
// DUMP_KT_IR
// MODULE: lib
// FILE: Test.kt
import androidx.compose.runtime.Composable
value class Test private constructor(val i: Int) {
companion object {
fun default() = Test(0)
}
}
@Composable fun Content(test: Test = Test.default()) {}
// MODULE: main(lib)
// FILE: main.kt
import androidx.compose.runtime.Composable
@Composable fun Test() {
Content()
}
fun box() = "OK"