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
25 lines
520 B
Kotlin
Vendored
25 lines
520 B
Kotlin
Vendored
// !JVM_DEFAULT_MODE: all
|
|
// TARGET_BACKEND: JVM
|
|
// IGNORE_BACKEND: ANDROID
|
|
// JVM_TARGET: 1.8
|
|
// WITH_REFLECT
|
|
|
|
annotation class Property(val value: String)
|
|
annotation class Accessor(val value: String)
|
|
|
|
interface Z {
|
|
@Property("OK")
|
|
val z: String
|
|
@Accessor("OK")
|
|
get() = "OK"
|
|
}
|
|
|
|
|
|
class Test : Z
|
|
|
|
fun box() : String {
|
|
val value = Z::z.annotations.filterIsInstance<Property>().single().value
|
|
if (value != "OK") return value
|
|
return (Z::z.getter.annotations.single() as Accessor).value
|
|
}
|