The documentation says that:
This feature was named "late static bindings" with an internal perspective in mind. "Late binding" comes from the fact that static:: will not be resolved using the class where the method is defined but it will rather be computed using runtime information. It was also called a "static binding" as it can be used for (but is not limited to) static method calls.
What does it mean by "not limited to static methods only"?
I'm just trying to understand that, I don't want to do something concrete, an example would be nice, for example.