360a5bf348
#KT-39705 Fixed #KT-19459 Fixed
15 lines
223 B
Kotlin
Vendored
15 lines
223 B
Kotlin
Vendored
// "Replace with '{ this.bar }()'" "true"
|
|
|
|
private class A {
|
|
val bar = 1
|
|
|
|
@Deprecated("t", ReplaceWith("{ this.bar }()"))
|
|
fun foooo() {
|
|
{ bar }()
|
|
}
|
|
}
|
|
|
|
private fun test(a: A) {
|
|
a.<caret>foooo()
|
|
}
|