blob: 5f59357844059104d1ea64ddfc68f7f088fe6fd0 [file] [log] [blame]
//
// Source
// ------------------------------------------
import androidx.compose.runtime.Composable
import androidx.compose.runtime.NonRestartableComposable
inline fun Bar(unused: @Composable () -> Unit = { }) {}
fun Foo() { Bar() }
//
// Transformed IR
// ------------------------------------------
fun Bar(unused: Function2<Composer, Int, Unit> = { %composer: Composer?, %changed: Int ->
sourceInformationMarkerStart(%composer, <>, "C:Test.kt")
Unit
sourceInformationMarkerEnd(%composer)
}
) { }
fun Foo() {
Bar()
}