Adjust testData

Standard JDK collections purely implement kotlin.Mutable* with non-platform arguments
This commit is contained in:
Denis Zharkov
2015-07-03 16:22:24 +03:00
parent 8b49a1d660
commit 151231ef1a
9 changed files with 64 additions and 62 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ class A() : BodyTag("a") {
get() = attributes["href"]
set(value) {
if (value != null) {
attributes.put("href", value)
attributes.put("href", <!DEBUG_INFO_SMARTCAST!>value<!>)
// attributes["href"] = value //doesn't work: KT-1355
}
}