f3c2dd0526
So #KT-24165 Fixed
8 lines
150 B
Kotlin
Vendored
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>()
|
|
} |