mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
Don't reconfigure runtime before every test. For consistency, mark tests that require the runtime with directives instead of relying on test file names.
8 lines
216 B
Kotlin
Vendored
8 lines
216 B
Kotlin
Vendored
// "Use inherited visibility" "true"
|
|
// RUNTIME_WITH_FULL_JDK
|
|
abstract class C : ClassLoader() {
|
|
<caret>private override fun findClass(var1: String): Class<*> {
|
|
throw ClassNotFoundException(var1)
|
|
}
|
|
}
|