I'm having some problems with delegation: ```class...
# announcements
k
I'm having some problems with delegation:
Copy code
class Test<K, V>(map: MutableMap<K, V>): MutableMap<K, V> by map

val test = Test(mutableMapOf(1 to "hello"))
test[1] += " there"
results in an exception at runtime:
Copy code
Exception in thread "main" java.lang.IllegalAccessError: tried to access method kotlin.collections.MapsKt__MapsKt.set(Ljava/util/Map;Ljava/lang/Object;Ljava/lang/Object;)V from class BugKt
	at BugKt.main(Bug.kt:6)