moved the stdlib tests into the same directory as the stdlib, so it works a bit better with maven support in IDEA

This commit is contained in:
James Strachan
2012-03-14 16:14:04 +00:00
parent 9cd21d3a4d
commit 7ef65c0099
35 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
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()
}
}