view nocompile/static_08.d @ 1520:b5c0842014ef

adapted for DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:23:42 +0000
parents f87ba6507260
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 12

module dstress.nocompile.static_08;

class MyClass{
	int status;
	static int check(){
		return status;
	}
}

int main(){
	MyClass c = new MyClass();
	return 0;
}