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