b95d3e711e
$default dispatch methods gains @Deprecated if the original function with default arguments has it.
7 lines
110 B
Kotlin
Vendored
7 lines
110 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Foo {
|
|
@JvmOverloads @Deprecated(message = "Foo") fun bar(x: String = "") {
|
|
}
|
|
}
|