KT-1159 test for obsolete issue

This commit is contained in:
Alex Tkachman
2012-02-13 09:54:12 +02:00
parent ace34b01bc
commit 845e873296
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,16 @@
public object RefreshQueue {
private val workerThread: Thread = Thread(object : Runnable {
override fun run() {
workerThread.isInterrupted()
}
});
{
workerThread.start()
}
}
fun box() : String {
RefreshQueue
return "OK"
}
@@ -185,4 +185,8 @@ public class PropertyGenTest extends CodegenTestCase {
public void testKt1170() throws Exception {
blackBoxFile("regressions/kt1170.kt");
}
public void testKt1159() throws Exception {
blackBoxFile("regressions/kt1159.kt");
}
}