24 lines
392 B
Kotlin
Vendored
24 lines
392 B
Kotlin
Vendored
// JVM_TARGET: 1.8
|
|
// WITH_RUNTIME
|
|
// FULL_JDK
|
|
interface Test {
|
|
fun test() {
|
|
}
|
|
}
|
|
|
|
interface Test2 : Test {
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
// TODO: enable this test once the required behavior is specified
|
|
// try {
|
|
// Test2::class.java.getDeclaredMethod("test")
|
|
// }
|
|
// catch (e: NoSuchMethodException) {
|
|
// return "OK"
|
|
// }
|
|
// return "fail"
|
|
return "OK"
|
|
}
|