changeset 165:67b55a6891a1

Lionello Lunesu <lionello.lunesu@crystalinter.remove.com> 2004-11-30 news:cohvnb$1eil$1@digitaldaemon.com nntp://news.digitalmars.com/digitalmars.D.bugs/2383
author thomask
date Wed, 01 Dec 2004 08:06:22 +0000
parents a76b2b568cc3
children 4c52d8c7c363
files nocompile/array_initialization_04.d
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/array_initialization_04.d	Wed Dec 01 08:06:22 2004 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
+// @date@	2004-11-30
+// @uri@	news:cohvnb$1eil$1@digitaldaemon.com
+// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2383
+
+module dstress.nocompile.array_initialization_04;
+
+void test(size_t size){
+}
+
+int main(){
+	for (int t=0; t<33; t++){
+		test((bit[t]).sizeof);
+	}
+	return 0;
+}
+