view run/v/variadic_argument_10_E.d @ 1489:b8c0195059d9

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

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

// @author@	Kris <fu@bar.com>
// @date@	2005-11-18
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5597

module dstress.run.v.variadic_argument_10_E;

int state;

class Bar{
	this(...){
	}
}

class Foo{
	void opAddAssign(Bar b){
		assert(b);
		state++;
	}
}

int main(){
	Foo f = new Foo;
	assert(state == 0);
	assert(f);
	
	f += new Bar;

	assert(state == 1);
	assert(f);

	return 0;
}