view run/b/bug_glue_355_C.d @ 1091:9dcac8d4e97f

post DMD-0.163 review
author thomask
date Fri, 21 Jul 2006 11:15:26 +0000
parents 1e6afb94ce6d
children b8c0195059d9
line wrap: on
line source

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

// @author@	John C <johnch_atms@hotmail.com>
// @date@	2005-09-29
// @uri@	news:dhf4c3$pua$1@digitaldaemon.com

module dstress.run.b.bug_glue_355_C;

class Foo {
	this(int[] params ...) {
	}
}

class Bar {

	private this() {
		init();
	}

	void init() {
		Foo f = new Foo(1, 2, 3);
	}

}

int main(){
	Bar b = new Bar();
	return 0;
}