view run/b/bug_cod2_4211_W.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9dcac8d4e97f
children
line wrap: on
line source

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

// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
// @date@	2005-07-07
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4472
// @desc@	Internal error: ../ztc/cod2.c 4211

module dstress.run.b.bug_cod2_4211_W;

struct Foo{
	char a, b, c;
}

int bar(Foo e){
	return e.a*1 + e.b*2 + e.c*3;
}

int main() {
	Foo d;
	d.a=1;
	d.b=2;
	d.c=3;

	if(bar(d) != 14){
		assert(0);
	}
	return 0;
}