view run/s/synchronized_01_B.d @ 605:0f5c200f5c90

Post Pforzheim catch up 3
author thomask
date Thu, 21 Jul 2005 17:21:59 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Regan Heath <regan@netwin.co.nz>
// @date@	2005-07-07
// @uri@	news:opstiqe10r23k2f5@nrage.netwin.co.nz

module dstress.run.s.synchronized_01_B;

int main(){
	Object data = new Object();
	
	synchronized(data) {
	}

	return 0;
}