view run/d/deprecated_22_B.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 b8c0195059d9
children
line wrap: on
line source

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

// @author@	Carlos Santander <csantander619@gmail.com>
// @date@	2006-05-16
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=7217

module dstress.run.d.deprecated_22_B;

int status;

void baz() {
	status--;
}

void foo(int i) {
	status += i;
}

deprecated alias baz foo;

int main(){
	status = 90;

	foo(2);

	if(status != 92){
		assert(0);
	}

	return 0;
}