mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
Fixed D-style varargs returning through pointer. Fixed converting nested function to delegate. Added std.string and std.format to Phobos.
14 lines
147 B
D
14 lines
147 B
D
module bug75;
|
|
|
|
void func(void delegate() dg)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
void nested() {
|
|
}
|
|
//func(&nested);
|
|
void delegate() dg = &nested;
|
|
}
|