class C(val x: X) { val foo: String get() = x. } class X { val s = "" fun getFoo() = "" } // ORDER: getFoo, s, toString