Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/NotAvailableOnDocComment.kt
T
Valentin Kipyatkov e1efb95259 Added test
2015-06-08 15:37:40 +03:00

10 lines
116 B
Kotlin
Vendored

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