// "Create abstract function 'A.foo'" "true" abstract class A { fun bar(b: Boolean) {} fun test(a: A) { bar(a.foo(1, "2")) } }