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

12 lines
146 B
Kotlin
Vendored

// IS_APPLICABLE: false
class C {
private val v = 1
<caret>@Deprecated("")
fun foo() {
bar(v)
}
fun bar(p: Int){}
}