view dmd/MOD.d @ 129:010eb8f0e18d

further work on dmd test suite
author korDen
date Sun, 05 Sep 2010 15:32:22 +0400
parents acd69f84627e
children af1bebfd96a4
line wrap: on
line source

module dmd.MOD;

public enum MOD
{
	MODundefined = 0,
	MODconst = 1,	// type is const
	MODshared = 2,	// type is shared
	MODinvariant = 4,	// type is immutable
	MODimmutable = 4,	// type is immutable
}

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