view run/cast_26.d @ 570:32f7f8ce5e51

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

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

// @author@	Kris <fu@bar.com>
// @date@	2005-04-09
// @uri@	news:d37pfe$17b8$1@digitaldaemon.com

module dstress.run.cast_26;

int main(char[][] args){
	char[] s;
	char[] t="a";

	s = (args.length>0) ? t : null;
	assert(s is t);
	return 0;
}