# HG changeset patch # User thomask # Date 1121723403 0 # Node ID d49e22280d759b3f8f0f2e1ad4d99f35f54ccc25 # Parent 58c17111478fdc01b83a6a8c653c3f1687694fdf post PFLUG catch up 2 diff -r 58c17111478f -r d49e22280d75 nocompile/a/array_initialization_17_A.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/a/array_initialization_17_B.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/d/delegate_15.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/f/function_03.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/o/opAssign_02_A.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/o/opAssign_02_B.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/o/opAssign_02_C.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 nocompile/o/opAssign_02_D.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 norun/r/retrun_07_A.d --- /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 +// @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 diff -r 58c17111478f -r d49e22280d75 norun/r/retrun_07_B.d --- /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 +// @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