Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/abstract/explicitReceiverOfContainingClass.kt.after
T
Dmitry Gridin c89d1af9fa Improve Create property from Usage
Place generated property next to other properties
 #KT-14886 Fixed
2019-02-27 00:07:55 +03:00

10 lines
177 B
Plaintext
Vendored

// "Create abstract property 'A.foo'" "true"
abstract class A {
abstract val foo: Boolean<caret>
fun bar(b: Boolean) {}
fun test(a: A) {
bar(a.foo)
}
}