uncommented test now KT-1718 is fixed

This commit is contained in:
James Strachan
2012-08-17 10:47:29 +01:00
parent 816a2598c6
commit 1c763dabe2
-4
View File
@@ -220,14 +220,10 @@ class CollectionTest {
assertEquals(arrayList("a", "b", "c"), list3)
}
/*
TODO compiler fails on this one
KT-1718
test fun plusCollectionBug() {
val list = arrayList("foo", "bar") + arrayList("cheese", "wine")
assertEquals(arrayList("foo", "bar", "cheese", "wine"), list)
}
*/
test fun plusCollection() {
val a = arrayList("foo", "bar")