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