mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
Applied fixes from wilsonk on the forum Some tweaks to work with gc 7.0 Fixed aggregate members of aggregates Fixed cyclic/recursive class declarations Other minor tweaks
18 lines
110 B
D
18 lines
110 B
D
module classes5;
|
|
|
|
struct S
|
|
{
|
|
long l;
|
|
}
|
|
|
|
class C
|
|
{
|
|
C c;
|
|
S s;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
//C c = new C;
|
|
}
|