view nocompile/bug_cgcod_1445_A.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents d049cc89b187
children
line wrap: on
line source

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

// @author@	Brian Gardner <briangr@friberg.us>
// @date@	2005-03-23
// @uri@	news:d1sald$2u6e$1@digitaldaemon.com

// __DSTRESS_ELINE__ 13

module dstress.nocompile.bug_cgcod_1445_A;

typedef u *u();

u s(){
	static int x = 0;
	return s;
}

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