mcpiroman
fun foo(vararg words: String) { val a: Array<String> = words }
Type mismatch. Required: Array<String> Found: Array<out String>
ephemient