view run/compare_02.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children 33a25c1e1cfc
line wrap: on
line source


// @author@	Ben Hinkle <bhinkle4@juno.com>
// @date@	2004-08-07
// @uri@	news://cf2tt5$2073$1@digitaldaemon.com

class MyClass{
}

int main(){
	MyClass c = new MyClass();
	assert( c != null);

	c = null;
	if( c != null){
		assert(0);
	}

	return 0;
}