mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
188 B
D
8 lines
188 B
D
// https://issues.dlang.org/show_bug.cgi?id=20868
|
|
// REQUIRED_ARGS: -preview=dip1000
|
|
|
|
void scoped (scope void delegate() dg)
|
|
{
|
|
static void delegate()[] dgs;
|
|
dgs ~= dg; // error
|
|
}
|