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