2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
12 lines
139 B
Kotlin
Vendored
12 lines
139 B
Kotlin
Vendored
// PROBLEM: none
|
|
class C {
|
|
private val v = 1
|
|
|
|
<caret>@Deprecated("")
|
|
fun foo() {
|
|
bar(v)
|
|
}
|
|
|
|
fun bar(p: Int){}
|
|
}
|