view run/static_17.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
line wrap: on
line source

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

// @author@ 	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2004-11-09
// @uri@	news:cmq61m$5rn$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2218

module dstress.run.static_17;

class MyClass{
	static{
		int foo(){
			return 1;
		}
	}

	static int bar(){
		return foo()+3;
	}
}

int main(){
	assert(MyClass.bar()==4);
	return 0;
}