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

8 lines
150 B
Kotlin
Vendored

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