fun test() { val f = String::length val s = "hello" val g = s::length f() + g() + String::length.invoke(s) + s::length.invoke() }