Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/objectsInQualified.kt
T
2018-09-26 13:35:35 +03:00

13 lines
194 B
Kotlin
Vendored

// "Replace with 'New'" "true"
package some
object New {
fun foo() {}
}
@Deprecated("Use New", replaceWith = ReplaceWith("New"))
object Old {
fun foo() {}
}
val test = some.<caret>Old