view run/unicode_04.d @ 250:d2728b26695a

unicode identifiers Anders F Bj?rklund <afb@algonet.se> 2005-01-25 news:ct428n$2qoe$1@digitaldaemon.com nntp://news.digitalmars.com/D.gnu/983
author thomask
date Tue, 25 Jan 2005 20:04:05 +0000
parents
children 52c9e86b6486
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
// @url@	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;
}