view run/d/dchar_11_D.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents 071d5525be12
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
// @date@	2006-12-25
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=740
// @desc@	[Issue 740] dchar[].dup causes compiler segfault

module dstress.run.d.dchar_11_D;

void dummy(dchar[] b){
}

int main(){
	dummy("-\U000000A1\U00000901\U0000FFEE\U00010000\U000FFFFD_");

	return 0;
}