changeset 603:d49e22280d75

post PFLUG catch up 2
author thomask
date Mon, 18 Jul 2005 21:50:03 +0000
parents 58c17111478f
children d676a0f37317
files nocompile/a/array_initialization_17_A.d nocompile/a/array_initialization_17_B.d nocompile/d/delegate_15.d nocompile/f/function_03.d nocompile/o/opAssign_02_A.d nocompile/o/opAssign_02_B.d nocompile/o/opAssign_02_C.d nocompile/o/opAssign_02_D.d norun/r/retrun_07_A.d norun/r/retrun_07_B.d
diffstat 10 files changed, 169 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/a/array_initialization_17_A.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,13 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Stewart Gordon <smjg_1998@yahoo.com>
+// @date@	2005-07-18
+// @uri@	news:dbft7s$2jo3$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 13
+
+module dstress.nocompile.a.array_initialization_17_A;
+
+int[3] qwert = [ 13, 42, 105, 666 ]; 
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/a/array_initialization_17_B.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,13 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Stewart Gordon <smjg_1998@yahoo.com>
+// @date@	2005-07-18
+// @uri@	news:dbft7s$2jo3$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 13
+
+module dstress.nocompile.a.array_initialization_17_B;
+
+int[3] qwert = [ 3:666 ];
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/d/delegate_15.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-13
+// @uri@	news:db3j76$m2g$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.d.delegate_15;
+
+void main() {
+	int f = &delegate(){};
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/f/function_03.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-13
+// @uri@	news:db3j76$m2g$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.f.function_03;
+
+void main() {
+	int f = &function(){};
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opAssign_02_A.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db61j4$2ved$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.o.opAssign_02_A;
+
+class Foo{
+}
+
+void main(){
+	Foo a;
+	Foo = a;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opAssign_02_B.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db61j4$2ved$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.o.opAssign_02_B;
+
+struct Foo{
+}
+
+void main(){
+	Foo a;
+	Foo = a;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opAssign_02_C.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,16 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db61j4$2ved$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 15
+
+module dstress.nocompile.o.opAssign_02_C;
+
+void main(){
+	int a;
+	int = a;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opAssign_02_D.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db61j4$2ved$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 15
+
+module dstress.nocompile.o.opAssign_02_D;
+
+enum Enum{
+	A
+}
+
+void main(){
+	Enum e;
+	Enum = e;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/norun/r/retrun_07_A.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Vathix <chris@dprogramming.com>
+// @date@	2005-07-14
+// @uri@	news:op.stwu8jtdl2lsvj@esi
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.norun.r.return_07_A;
+
+int foo(){
+}
+
+int main(){
+	foo();
+	return 0;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/norun/r/retrun_07_B.d	Mon Jul 18 21:50:03 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Vathix <chris@dprogramming.com>
+// @date@	2005-07-14
+// @uri@	news:op.stwu8jtdl2lsvj@esi
+
+// __DSTRESS_DFLAGS__ -inline
+// __DSTRESS_ELINE__ 15
+
+module dstress.norun.r.return_07_B;
+
+int foo(){
+}
+
+int main(){
+	foo();
+	return 0;
+}
\ No newline at end of file