view nocompile/static_07.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3414705c41ac
children
line wrap: on
line source

// static can only be applied to members of a type (class, struct, union)

module dstress.nocompile.static_07;

static int test(){
	return 1;
}

int main(){
	test();
	return 0;
}