view run/init_03.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents 55d03895784e
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Regan Heath <regan@netwin.co.nz>
// @date@	2005-03-19
// @uri@	news:opsnvajfcb23k2f5@nrage.netwin.co.nz

module dstress.run.init_03;

int main(){
        static int[4] array2 = [5,6,7,8];
        TypeInfo i = typeid(typeof(array2.init));
	assert(!(i is null));
	return 0;
}