Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/wholeProject/property.after.Declarations.kt
T
2015-05-29 15:06:14 +03:00

10 lines
148 B
Kotlin
Vendored

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