view run/b/bug_expression_5981_B.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 36bedfa079e6
children
line wrap: on
line source

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

// @author@	Kazuhiro Inaba <kinaba@is.s.u-tokyo.ac.jp>
// @date@	2006-12-03
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=641
// @desc@	[Issue 641] New: Complex string operations in template argument ICEs dmd

module dstress.run.b.bug_expression_5981_B;

int main(){
	auto x = ([""]~[])[0];

	if(is(typeof(x) : string)){
		return 0;
	}

	assert(0);
}