2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
6 lines
156 B
Kotlin
Vendored
6 lines
156 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
<caret>@Deprecated("Use the other version", level=DeprecationLevel.HIDDEN)
|
|
fun foo(a: Int) { foo(a) }
|
|
|
|
fun foo(a: Int, b: Int = 0) { ... } |