// @Module:Main // https://github.com/JetBrains/compose-jb/issues/1226 // TODO: move this to passing cases after kotlin 1.6.0 import kotlin.reflect.KProperty import androidx.compose.runtime.Composable @Composable fun MySelect( options: List, onChange: (T?) -> Unit ) { } fun main() { callComposable { MySelect( options = emptyList(), onChange = {} ) } }