Files
kotlin-fork/idea/testData/highlighter/deprecated/Invoke.kt
T
Natalia.Ukhorskaya 9422fea0c4 Mark deprecated as a warning
#KT-3252 Fixed
2013-01-21 16:34:07 +04:00

9 lines
194 B
Kotlin

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