view run/b/bug_cod1_2528_C.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 c9244d89796e
children 04022926a4d5
line wrap: on
line source

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

// @author@	Matti Niemenmaa <deewiant@gmail.com>
// @date@	2007-02-03
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=925
// @desc@	[Issue 925] ICE on casting array literal to void[]

module dstress.run.b.bug_cod1_2528_C;

int main(){
	auto x = cast(void[])[1];
	return x.length - 1;
}