added test for KT-243

This commit is contained in:
Alex Tkachman
2011-08-31 17:42:12 +02:00
parent 628f5a5232
commit 6fcd36f9bd
5 changed files with 33 additions and 9 deletions
@@ -0,0 +1,8 @@
fun box() : String {
val t = java.lang.String.copyValueOf(java.lang.String("s").toCharArray())
val i = java.lang.Integer.MAX_VALUE
val j = java.lang.Integer.valueOf(15)
val s = java.lang.String.valueOf(1)
val l = java.util.Collections.emptyList<Int>()
return "OK"
}