view nocompile/c/case_03.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 9648211b1961
children d3a3e0c251d8
line wrap: on
line source

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

// @author@	Rev <Rev_member@pathlink.com>
// @date@	2005-02-13
// @uri@	news:cunl9i$15r2$1@digitaldaemon.com
// @uri@	nntp://news.digitalmars.com/digitalmars.D.bugs/2966

// __DSTRESS_ELINE__ 22

module dstress.nocompile.c.case_03;

char[] getString(){
	return "i";
}

void test(){
	char[] hold;
	switch(hold) {
		case "":
		case getString():
	}
}