changeset 1160:7c35155bad9c

[Issue 389] New: Cannot link to std.path.altsep Bradley Smith <digitalmars-com@baysmith.com> 2006-09-30 news:bug-389-3@http.d.puremagic.com/issues/
author thomask
date Mon, 02 Oct 2006 08:02:50 +0000
parents aeb3e001a812
children fbeab4835f72
files reporter.txt run/c/const_39_A.d run/c/const_39_B.d run/c/const_39_C.d run/c/const_39_D.d run/c/const_39_E.d
diffstat 6 files changed, 98 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/reporter.txt	Fri Sep 29 08:11:05 2006 +0000
+++ b/reporter.txt	Mon Oct 02 08:02:50 2006 +0000
@@ -19,11 +19,13 @@
 Bent Rasmussen		<exo@bent-rasmussen.info>
 berupon			<yu@3dcg.ne.jp>
 bobef			<bobef@lessequal.com>
+Boris Kolar		<boris.kolar@globera.com>
 brad beveridge
 Brad Roberts		<braddr@puremagic.com>
+Bradley Smith		<digitalmars-com@baysmith.com>
 Brian Gardner		<briangr@friberg.us>
 Brian Hjølluu
-Bruno Medeiros		<daiphoenixNO@SPAMlycos.com>, <brunodomedeirosATgmail@SPAM.com>
+Bruno Medeiros		<daiphoenixNO@SPAMlycos.com>, <brunodomedeirosATgmail@SPAM.com>, <brunodomedeiros+bugz@gmail.com>
 Buchan			<kbuchan@xtra.co.nz>
 Burton Radons		<burton-radons@shaw.ca>, <burton-radons@smocky.com>
 Carlos Santander B.	<carlos8294@msn.com>, <csantander619@gmail.com>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/const_39_A.d	Mon Oct 02 08:02:50 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bradley Smith <digitalmars-com@baysmith.com>
+// @date@	2006-09-30
+// @uri@	news:bug-389-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 389] New: Cannot link to std.path.altsep
+
+module dstress.run.c.const_39_A;
+
+const int[0] array;
+
+int main(){
+	if(array.length != 0){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/const_39_B.d	Mon Oct 02 08:02:50 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bradley Smith <digitalmars-com@baysmith.com>
+// @date@	2006-09-30
+// @uri@	news:bug-389-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 389] New: Cannot link to std.path.altsep
+
+module dstress.run.c.const_39_B;
+
+const char[0] array;
+
+int main(){
+	if(array.length != 0){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/const_39_C.d	Mon Oct 02 08:02:50 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bradley Smith <digitalmars-com@baysmith.com>
+// @date@	2006-09-30
+// @uri@	news:bug-389-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 389] New: Cannot link to std.path.altsep
+
+module dstress.run.c.const_39_C;
+
+const dchar[0] array;
+
+int main(){
+	if(array.length != 0){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/const_39_D.d	Mon Oct 02 08:02:50 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bradley Smith <digitalmars-com@baysmith.com>
+// @date@	2006-09-30
+// @uri@	news:bug-389-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 389] New: Cannot link to std.path.altsep
+
+module dstress.run.c.const_39_D;
+
+const wchar[0] array;
+
+int main(){
+	if(array.length != 0){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/const_39_E.d	Mon Oct 02 08:02:50 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bradley Smith <digitalmars-com@baysmith.com>
+// @date@	2006-09-30
+// @uri@	news:bug-389-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 389] New: Cannot link to std.path.altsep
+
+module dstress.run.c.const_39_E;
+
+const float[0] array;
+
+int main(){
+	if(array.length != 0){
+		assert(0);
+	}
+	return 0;
+}