Files
kotlin-fork/compiler/testData/ir/irText/firProblems/deprecated.kt.txt
T
2024-02-16 10:19:38 +00:00

15 lines
309 B
Kotlin
Vendored

fun create(): String {
return "OK"
}
@Deprecated(message = "Use create() instead()")
fun create(b: Boolean): String {
return create()
}
@Deprecated(message = "Use create() instead()", replaceWith = ReplaceWith(expression = "create()", imports = []))
fun create(s: String): String {
return create()
}