3120a35a88
The tests are removed because JvmDefault is going to be deprecated with error in KT-54746 and removed later in KT-57696. Many of the removed tests already had existing counterparts with the new modes `all` and `all-compatibility`. In this change, I've added such tests where they were missing, and removed tests which were testing behavior specific to the JvmDefault annotation, such as some diagnostics. #KT-54746
20 lines
600 B
Kotlin
Vendored
20 lines
600 B
Kotlin
Vendored
// !JVM_DEFAULT_MODE: all-compatibility
|
|
// TARGET_BACKEND: JVM
|
|
// JVM_TARGET: 1.8
|
|
// FULL_JDK
|
|
// WITH_STDLIB
|
|
|
|
interface IFoo {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun box(): String {
|
|
val iFoo = IFoo::class.java
|
|
val iFooDefaultImpls = Class.forName("${iFoo.name}\$DefaultImpls")
|
|
val fooMethod = iFooDefaultImpls.declaredMethods.find { it.name == "foo" }
|
|
?: throw AssertionError("No method 'foo' in class ${iFooDefaultImpls.name}")
|
|
fooMethod.getAnnotation(java.lang.Deprecated::class.java)
|
|
?: throw AssertionError("No java.lang.Deprecated annotation on method 'foo'")
|
|
return "OK"
|
|
}
|