view undefined/array_initialization_06.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 561a9ae8208d
children
line wrap: on
line source

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

// @author@	Andrew Fedoniouk <news@terrainformatica.com>
// @date@	2005-04-12
// @uri@	news:d3hjto$cl8$1@digitaldaemon.com

module dstress.run.array_initialization_06;

typedef int Type = 12;
static Type[2] var = [0:1];

int main(char[][] args){
	assert(var[0] == 1);
	assert(var[1] == 12);
	return 0;
}