view run/s/switch_24_C.d @ 1541:fe62f80b7ea1

[Issue 1253] DMD 0.175 introduced bug: array initializers as expressions are not allowed? Oskar Linde <oskar.linde@gmail.com> 2007-06-01 http://d.puremagic.com/issues/show_bug.cgi?id=1253
author thomask
date Sun, 01 Jul 2007 13:18:21 +0000
parents 1ee9a0dd42d9
children
line wrap: on
line source

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

// @author@	BCS <ao@pathlink.com>
// @date@	2007-03-24
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=10738
// @desc@	switch bug

module dstress.run.s.switch_24_C;

int main(){
	int x = 0;

	switch("#!"){
		case "#!":
			x++;
			break;
		default:
			assert(0);
			break;
	}

	if(1 != x){
		assert(0);
	}

	return 0;
}