view nocompile/bug_20041203_A.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents b824116874df
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Geoff Hickey <Geoff_member@pathlink.com>
// @date@	2004-12-03
// @uri@	news:coodc7$27qp$1@digitaldaemon.com
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2431

module dstress.nocompile.bug_20041203_A;

struct MyStruct{
	uint i;
}

int main(){
	MyStruct s;
	s.i = 1;

	switch( s.i ){
		case undefined_identifier:
			break;
	}

	return 0;
}