Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/DeprecationLevelHidden.kt
T
2017-05-24 15:06:51 +02:00

6 lines
163 B
Kotlin
Vendored

// IS_APPLICABLE: false
<caret>@Deprecated("Use the other version", level=DeprecationLevel.HIDDEN)
fun foo(a: Int) { foo(a) }
fun foo(a: Int, b: Int = 0) { ... }