blob: d99c69b4ed43809070135664a2c696dc0551344d [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");