Drop deprecated MutableMap property delegation operator

This commit is contained in:
Ilya Gorbunov
2020-06-19 00:26:22 +03:00
parent 7632910ffd
commit 696701d377
6 changed files with 19 additions and 40 deletions
@@ -1,6 +1,5 @@
class C(val map: MutableMap<String, Any>) {
// NB: this does not work because of @LowPriorityInOverloadResolution not deserialized (KT-37228)
var foo by <!AMBIGUITY!>map<!>
var foo by map
}
var bar by <!AMBIGUITY!>hashMapOf<String, Any>()<!>
var bar by hashMapOf<String, Any>()