view dmd/AnonymousAggregateDeclaration.d @ 182:b64060ab22df

Now compileable with dmd2.050
author korDen
date Sat, 30 Oct 2010 05:05:32 +0400
parents e3afd1303184
children b0d41ff5e0df
line wrap: on
line source

module dmd.AnonymousAggregateDeclaration;

import dmd.common;
import dmd.AggregateDeclaration;
import dmd.Loc;

class AnonymousAggregateDeclaration : AggregateDeclaration
{
    this()
    {
		register();
		super(Loc(0), null);
    }

    AnonymousAggregateDeclaration isAnonymousAggregateDeclaration() { return this; }
}