2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
10 lines
109 B
Kotlin
Vendored
10 lines
109 B
Kotlin
Vendored
// PROBLEM: none
|
|
/**
|
|
* <caret>This is a doc-comment
|
|
*/
|
|
@Deprecated("")
|
|
fun foo() {
|
|
bar()
|
|
}
|
|
|
|
fun bar(){} |