view run/cast_26.d @ 415:e9b425f5e887

() ? (null) : (array) Kris <fu@bar.com> 2005-04-09 news:d37pfe$17b8$1@digitaldaemon.com
author thomask
date Sat, 09 Apr 2005 09:08:25 +0000
parents
children 32f7f8ce5e51
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===t);
	return 0;
}