What is the meaning of the value returned by the address operator applied to an instance member function as if that function were static? class Foo { void bar() { } } void main() { writefln(&Foo.bar); }