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

10 lines
107 B
Kotlin
Vendored

package pack
import dependency.D
<caret>@deprecated("")
fun foo() {
bar(D.value)
}
fun bar(p: Int){}