And why won't this compile either? ``` class Foo(v...
# getting-started
b
And why won't this compile either?
Copy code
class Foo(val bars: Map<Int, Bar<*>>) {
    
    fun <Baz> qux(baz: Baz) {
        val bar2 = bars[2]!!
        bar2.bazes += baz
    }
    
    interface Bar<Baz> {
        var bazes: MutableList<Baz>
    }
}
b
Thanks! I'm still not used to there being useful existing knowledge about Kotlin compiler errors :P