KT-1172 test for obsolete issue

This commit is contained in:
Alex Tkachman
2012-02-12 08:28:49 +02:00
parent 9f4ef7fb6a
commit be5e11f2a5
+18
View File
@@ -0,0 +1,18 @@
package test.regressions.kt1172
import std.concurrent.*
import junit.framework.*
import java.util.*
public fun scheduleRefresh(vararg files : Object) {
java.util.ArrayList<Object>(files.map{ it })
}
fun main(args : Array<String?>?) {
}
class Kt1172Test() : TestCase() {
fun testMe() {
main(null)
}
}