Fixed wrong constructor arguments order

This commit is contained in:
Denis Zharkov
2014-11-04 17:29:27 +04:00
committed by Andrey Breslav
parent a8ca39754c
commit 73ca75cc0b
5 changed files with 66 additions and 3 deletions
@@ -0,0 +1,14 @@
import test.*
fun box(): String {
val x = foo1<Int>().javaClass.getGenericSuperclass()?.toString()
if (x != "test.A<java.lang.Integer>") return "fail 1: " + x
if (!foo2<String>("abc")) return "fail 2"
if (foo2<Int>("abc")) return "fail 3"
if (!foo3<String>("abc", "cde")) return "fail 4"
if (foo3<String>("abc", 1)) return "fail 5"
return "OK"
}