Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/nonPublicMember/inAnnotation.fir.kt
T
2023-11-20 10:32:05 +00:00

7 lines
174 B
Kotlin
Vendored

// ISSUE: KT-60604
private const val MESSAGE = "This is deprecated"
@Deprecated(<!NON_PUBLIC_CALL_FROM_PUBLIC_INLINE!>MESSAGE<!>)
inline fun hello(f: () -> Int): Int = f()