62d8153ada
Change testData for deprecated annotation #KT-2947 Fixed
9 lines
188 B
Kotlin
9 lines
188 B
Kotlin
class MyRunnable() {}
|
|
|
|
deprecated("'fun invoke()' is deprecated") fun MyRunnable.invoke() {
|
|
}
|
|
|
|
fun test() {
|
|
val m = MyRunnable()
|
|
<info descr="'fun invoke()' is deprecated">m()</info>
|
|
} |