e2f75463d7
Don't reconfigure runtime before every test. For consistency, mark tests that require the runtime with directives instead of relying on test file names.
9 lines
208 B
Plaintext
Vendored
9 lines
208 B
Plaintext
Vendored
// "Add 'kotlin.Any' as upper bound for E" "true"
|
|
// WITH_RUNTIME
|
|
import kotlin.reflect.KClass
|
|
|
|
|
|
inline fun <reified /* abc */ E : Any> bar() = E::class.oldJava
|
|
|
|
val <T: Any> KClass<T>.oldJava get() = java
|