view run/static_17.d @ 1487:6e4063f99377

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 12:29:15 +0000
parents 52c9e86b6486
children
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@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=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;
}