fun foo() { A() .getB() .f1() } class A { fun getB() = B() } class B { fun f1() {} } // EXISTS: getB(), f1()