Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/wholeProject/property.before.Declarations.kt
T
2015-09-04 18:19:31 +03:00

12 lines
187 B
Kotlin
Vendored

package pack
@Deprecated("", ReplaceWith("newProp"))
val oldProp: String = ""
val String.oldProp: String get() = ""
val newProp: String = ""
fun foo(s: String){}
fun bar(s: String){}