view dmd/AnonymousAggregateDeclaration.d @ 92:0c891ec48515

Fixed another bug related to copy ctor
author korDen
date Mon, 30 Aug 2010 23:43:38 +0400
parents 10317f0c89a5
children e28b18c23469
line wrap: on
line source

module dmd.AnonymousAggregateDeclaration;

import dmd.AggregateDeclaration;
import dmd.Loc;

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

    AnonymousAggregateDeclaration isAnonymousAggregateDeclaration() { return this; }
}