# HG changeset patch # User thomask # Date 1172489274 0 # Node ID 5cd796ed85c3875fa80fe83ddf2f0885112802eb # Parent 70cf89908f9dd194d705993521fb3fe6770dc265 [Issue 991] void static array: integral constant must be scalar type, not void Chris Miller 2007-02-21 http://d.puremagic.com/issues/show_bug.cgi?id=991 diff -r 70cf89908f9d -r 5cd796ed85c3 run/v/void_06_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/v/void_06_A.d Mon Feb 26 11:27:54 2007 +0000 @@ -0,0 +1,18 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Chris Miller +// @date@ 2007-02-21 +// @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=991 +// @desc@ [Issue 991] void static array: integral constant must be scalar type, not void + +module dstress.run.v.void_06_A; + +int main(){ + void[8] x; + if(x.length != 8){ + assert(0); + } + return 0; +} diff -r 70cf89908f9d -r 5cd796ed85c3 run/v/void_06_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/v/void_06_B.d Mon Feb 26 11:27:54 2007 +0000 @@ -0,0 +1,18 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Chris Miller +// @date@ 2007-02-21 +// @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=991 +// @desc@ [Issue 991] void static array: integral constant must be scalar type, not void + +module dstress.run.v.void_06_B; + +int main(){ + void[] x = new void[8]; + if(x.length != 8){ + assert(0); + } + return 0; +}