mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
7 lines
258 B
D
7 lines
258 B
D
// 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");
|