12 lines
274 B
Kotlin
12 lines
274 B
Kotlin
class MyRunnable() {}
|
|
|
|
deprecated("Use A instead") fun MyRunnable.invoke() {
|
|
}
|
|
|
|
fun test() {
|
|
val m = MyRunnable()
|
|
<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'invoke(): Unit' is deprecated. Use A instead">m</warning>()
|
|
}
|
|
|
|
// NO_CHECK_INFOS
|
|
// NO_CHECK_WEAK_WARNINGS |