Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/AlreadyWithReplaceWith.kt
T
2015-09-04 18:19:31 +03:00

7 lines
105 B
Kotlin
Vendored

// IS_APPLICABLE: false
<caret>@Deprecated("", ReplaceWith("bar()"))
fun foo() {
bar()
}
fun bar(){}