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

10 lines
107 B
Kotlin
Vendored

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