Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedSinceKotlin/messageFromDeprecatedAnnotation.fir.kt
T

13 lines
202 B
Kotlin
Vendored

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