Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/PrivateSymbolUsed.kt
T
2015-05-27 16:15:50 +03:00

12 lines
146 B
Kotlin

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