Move tests on KClass.java* to box/classLiteral/java
Also replace WITH_REFLECT to WITH_RUNTIME to test that these cases correctly work without reflection in the classpath
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
abstract class S<T>(val klass: Class<T>) {
|
||||
val result = klass.simpleName
|
||||
}
|
||||
|
||||
object OK : S<OK>(OK::class.java)
|
||||
|
||||
class C {
|
||||
companion object Companion : S<Companion>(Companion::class.java)
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
assertEquals("Companion", C.Companion.result)
|
||||
return OK.result
|
||||
}
|
||||
Reference in New Issue
Block a user