Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/properties/callToCustomProperty.kt.after
T
2018-05-24 15:15:22 +03:00

8 lines
141 B
Plaintext
Vendored

// "Replace with 'bar'" "true"
val bar get() = 1
@Deprecated("use property instead", ReplaceWith("bar"))
fun foo() = 1
fun test(){
bar
}