view run/static_13.d @ 328:c09a40fe4faa

static is ignored when applied to other declarations Walter <walter@digitalmars.com> 2005-03-17 mail:000701c52b27$e4cdd220$0200a8c0@colossus
author thomask
date Fri, 18 Mar 2005 07:38:57 +0000
parents
children f87ba6507260
line wrap: on
line source

module dstress.run.static_13;

int check(){
	static int x;
	return x;
}

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