Files
kotlin-fork/idea/testData/highlighter/deprecated/Invoke.kt
T
2013-01-15 19:41:41 +04:00

9 lines
201 B
Kotlin

class MyRunnable() {}
deprecated("Use A instead") fun MyRunnable.invoke() {
}
fun test() {
val m = MyRunnable()
<info descr="'fun invoke()' is deprecated. Use A instead"><info>m</info>()</info>
}