Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedSinceKotlin/messageFromDeprecatedAnnotation.fir.kt
T
2020-06-29 14:23:26 +03:00

7 lines
107 B
Kotlin
Vendored

@Deprecated("foo test")
@DeprecatedSinceKotlin(warningSince = "1.0")
fun foo() {}
fun test() {
foo()
}