view run/unicode_05.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +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_05;

class 国{
	int 人;
}

int main(){
	国 日本 = new 国();
	assert(日本.人==0);
	日本.人++;
	assert(日本.人==1);
	return 0;
}