class Foo { val foo: String get() = "" } fun test() { consume(Foo::foo) } fun consume(f: (Foo) -> String) {}