view run/const_14.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 d3a3e0c251d8
children
line wrap: on
line source

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

// @author@	John Reimer <brk_6502@yahoo.com>
// @date@	2005-02-20
// @uri@	news:pan.2005.02.20.14.41.58.234018@yahoo.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3030

module dstress.run.const_14;

const int c = 50*50;

const int b = 4*c;
int[4*c]  array;

int main(){
	assert(array.length==4*50*50);
	return 0;
}