Files
kotlin-fork/compiler/testData/ir/irText/firProblems/deprecated.kt.txt
T
2020-11-26 00:14:16 +03:00

15 lines
309 B
Plaintext
Vendored

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