Delete some strange code left (accidentally?) for the purpose of testing KT-1515.

This commit is contained in:
Pavel V. Talanov
2012-10-01 16:17:42 +04:00
parent 90ce15d96f
commit efe0c83872
2 changed files with 0 additions and 29 deletions
@@ -1,6 +0,0 @@
package org.jetbrains.kotlin.support
fun loadAsserter(): Unit {
val c = javaClass<Runnable>()
println("class is $c")
}
@@ -1,23 +0,0 @@
package test.language
import junit.framework.TestCase
import kotlin.test.*
import org.jetbrains.kotlin.support.*
fun localUseWorks(): Unit {
val c = javaClass<Runnable>()
println("class is $c")
}
class JavaClassTest : TestCase() {
fun testJavaClass() {
localUseWorks()
// TODO this function fails!
// see KT-1515
loadAsserter()
}
}