view dmd/TRUST.d @ 161:584dc990e12f

type fixed
author korDen
date Mon, 20 Sep 2010 01:19:36 +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));