Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedSinceKotlin/messageFromDeprecatedAnnotation.kt
T
2023-02-28 10:19:18 +00:00

12 lines
192 B
Kotlin
Vendored

// ALLOW_KOTLIN_PACKAGE
package kotlin
@Deprecated("foo test")
@DeprecatedSinceKotlin(warningSince = "1.0")
fun foo() {}
fun test() {
<!DEPRECATION("foo(): Unit; foo test")!>foo<!>()
}