view run/b/bug_cod1_2528_C.d @ 1531:640c34dfc7a5

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:35:09 +0000
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;
}