Files
kotlin-fork/idea/testData/highlighter/deprecated/Invoke.kt
T
2012-10-12 15:23:04 +04:00

9 lines
156 B
Kotlin

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