view nocompile/invariant_26.d @ 739:0ea4c218a3ee

updated meta data for Torture
author thomask
date Sat, 12 Nov 2005 07:32:34 +0000
parents 168e5120626f
children ec5e144583ea
line wrap: on
line source

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

// __DSTRESS_TORTURE_BLOCK__ -release
// __DSTRESS_ELINE__ 19

module dstress.nocompile.invariant_26;

class MyClass{
	public void bug(){
	}

	private void middle(){
		bug();
	}

	invariant{
		middle();
	}
}