2a594a5bcc
#KT-14019 Fixed
10 lines
177 B
Plaintext
Vendored
10 lines
177 B
Plaintext
Vendored
// "Create abstract property 'A.foo'" "true"
|
|
abstract class A {
|
|
fun bar(b: Boolean) {}
|
|
|
|
abstract val foo: Boolean<caret>
|
|
|
|
fun test(a: A) {
|
|
bar(a.foo)
|
|
}
|
|
} |