Why it does not work? ```@Composable fun MyWidget(...
# compose
h
Why it does not work?
Copy code
@Composable
fun MyWidget(
        content: @Composable () -> Unit
) { /* TODO */ }
and it does:
Copy code
@Composable
fun MyWidget(
        content: @Composable() () -> Unit
) { /* TODO */ }