7 lines
174 B
Kotlin
Vendored
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()
|