view run/unicode_04.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 52c9e86b6486
children
line wrap: on
line source

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

// @author@	Anders F Björklund <afb@algonet.se>
// @date@	2005-01-25
// @uri@	news:ct428n$2qoe$1@digitaldaemon.com
// @uri@	nntp://news.digitalmars.com/D.gnu/983

module dstress.run.unicode_04;

struct Maß{
	int hölle;
}

int main(){
	Maß maß;
	assert(maß.hölle==0);
	maß.hölle++;
	assert(maß.hölle==1);
	return 0;
}