Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/deprecatedJvmOverloads.kt
T
Kristoffer Andersen b95d3e711e [JVM IR] KT-36985: $default respects @Deprecated
$default dispatch methods gains @Deprecated if the original function
with default arguments has it.
2020-06-25 18:43:45 +03:00

7 lines
110 B
Kotlin
Vendored

// WITH_RUNTIME
class Foo {
@JvmOverloads @Deprecated(message = "Foo") fun bar(x: String = "") {
}
}