9422fea0c4
#KT-3252 Fixed
9 lines
194 B
Kotlin
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>
|
|
} |