Comment #0 by dlang-bugzilla — 2015-10-03T14:03:42Z
void function() fun;
import std.demangle;
pragma(msg, demangle(fun.mangleof));
This prints:
void function()* test.fun
The * is superfluous (as "function" already indicates a function pointer), and thus indicates a pointer to a function pointer.
Comment #1 by robert.schadek — 2024-12-07T13:35:48Z