mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
218 B
D
10 lines
218 B
D
/*
|
|
EXTRA_ARGS: -defaultlib=
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
auto dg = delegate() @safe pure nothrow @nogc {};
|
|
auto dg_gc_sys = delegate() @system pure nothrow { new int[10]; };
|
|
auto dg_lazy = delegate(lazy void f) {};
|
|
}
|