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

10 lines
116 B
Kotlin
Vendored

// IS_APPLICABLE: false
/**
* <caret>This is a doc-comment
*/
@Deprecated("")
fun foo() {
bar()
}
fun bar(){}