view dmd/TRUST.d @ 182:b64060ab22df

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

module dmd.TRUST;

enum TRUST
{
    TRUSTdefault = 0,
    TRUSTsystem = 1,	// @system (same as TRUSTdefault)
    TRUSTtrusted = 2,	// @trusted
    TRUSTsafe = 3,	// @safe
};

import dmd.EnumUtils;
mixin(BringToCurrentScope!(TRUST));