blob: b476c176283f2bf761feb665966dc3ad21c9c006 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=12527
@system:
alias Fun = void function() @safe;
static assert(Fun.stringof == "void function() @safe");
alias Del = void delegate() @safe;
static assert(Del.stringof == "void delegate() @safe");