# HG changeset patch # User thomask # Date 1121679340 0 # Node ID 58c17111478fdc01b83a6a8c653c3f1687694fdf # Parent 9156914a7518e14a4e38f5cb2960932cabb10eb1 post PFLUG catch up 1 diff -r 9156914a7518 -r 58c17111478f nocompile/o/cast_28.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/cast_28.d Mon Jul 18 09:35:40 2005 +0000 @@ -0,0 +1,16 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ kenny +// @date@ 2005-07-17 +// @uri@ news:dbcphe$2s0d$1@digitaldaemon.com + +module dstress.nocompile.o.cast_28; + +void main(){ + char[] data; + bit* pData; + + pData = &cast(bit*) data; +} \ No newline at end of file diff -r 9156914a7518 -r 58c17111478f nocompile/o/opAssign_01_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opAssign_01_A.d Mon Jul 18 09:35:40 2005 +0000 @@ -0,0 +1,17 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Chris Sauls +// @date@ Jul 2005-07-18 +// @uri@ news:dbfiit$29h3$1@digitaldaemon.com + +module dstress.nocompile.o.opAssign_01_A; + +void func(inout int[] x){ +} + +void main(){ + int[] foo, bar; + func(bar = foo.dup); +} \ No newline at end of file diff -r 9156914a7518 -r 58c17111478f nocompile/o/opAssign_01_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opAssign_01_B.d Mon Jul 18 09:35:40 2005 +0000 @@ -0,0 +1,17 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Chris Sauls +// @date@ Jul 2005-07-18 +// @uri@ news:dbfiit$29h3$1@digitaldaemon.com + +module dstress.nocompile.o.opAssign_01_B; + +void func(inout int x){ +} + +void main(){ + int foo, bar; + func(bar = foo); +} \ No newline at end of file