# HG changeset patch # User thomask # Date 1121971469 0 # Node ID 13382c0e879ad79a99c73ead14a8da6aef5edce6 # Parent 0f5c200f5c90a458dd3fd13ea494853e50f56eb8 duplicate test-ID clean up diff -r 0f5c200f5c90 -r 13382c0e879a nocompile/a/array_initialization_17_A.d --- a/nocompile/a/array_initialization_17_A.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// $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 0f5c200f5c90 -r 13382c0e879a nocompile/a/array_initialization_17_B.d --- a/nocompile/a/array_initialization_17_B.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// $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 0f5c200f5c90 -r 13382c0e879a nocompile/a/array_initialization_18_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/a/array_initialization_18_A.d Thu Jul 21 18:44:29 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_18_A; + +int[3] qwert = [ 13, 42, 105, 666 ]; diff -r 0f5c200f5c90 -r 13382c0e879a nocompile/a/array_initialization_18_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/a/array_initialization_18_B.d Thu Jul 21 18:44:29 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_18_B; + +int[3] qwert = [ 3:666 ]; diff -r 0f5c200f5c90 -r 13382c0e879a nocompile/o/opXorAssign_01_J.d --- a/nocompile/o/opXorAssign_01_J.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Derek Parnell -// @date@ 2005-06-20 -// @uri@ news:z9tq34fp6es8$.1qbwawa43urrx$.dlg@40tude.net -// @desc@ Internal error: ../ztc/cgcs.c 213 - -// __DSTRESS_ELINE__ 16 - -module dstress.nocompile.o.opXorAssign_01_J; - -void main(){ - float[1] f=8f; - f[0] ^= 1f; -} diff -r 0f5c200f5c90 -r 13382c0e879a nocompile/o/opXorAssign_01_S.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opXorAssign_01_S.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,17 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Derek Parnell +// @date@ 2005-06-20 +// @uri@ news:z9tq34fp6es8$.1qbwawa43urrx$.dlg@40tude.net +// @desc@ Internal error: ../ztc/cgcs.c 213 + +// __DSTRESS_ELINE__ 16 + +module dstress.nocompile.o.opXorAssign_01_S; + +void main(){ + float[1] f=8f; + f[0] ^= 1f; +} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_A.d --- a/run/b/bug_cod2_4211_A.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Deewiant -// @date@ 2005-07-07 -// @uri@ news:dajn75$1hfl$1@digitaldaemon.com -// @desc@ Internal error: ../ztc/cod2.c 4211 - -module dstress.run.b.bug_cod2_4211_A; - -struct Foo{ - ubyte a, b, c; -} - -int bar(Foo e){ - return e.a + e.b + e.c; -} - -int main() { - Foo d; - d.a=1; - d.b=2; - d.c=3; - assert(bar(d)==6); - return 0; -} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_B.d --- a/run/b/bug_cod2_4211_B.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Deewiant -// @date@ 2005-07-07 -// @uri@ news:dajn75$1hfl$1@digitaldaemon.com -// @desc@ Internal error: ../ztc/cod2.c 4211 - -module dstress.run.b.bug_cod2_4211_B; - -struct Foo{ - ubyte a, b; -} - -int bar(Foo e){ - return e.a + e.b; -} - -int main() { - Foo d; - d.a=1; - d.b=2; - assert(bar(d)==3); - return 0; -} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_C.d --- a/run/b/bug_cod2_4211_C.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Deewiant -// @date@ 2005-07-07 -// @uri@ news:dajn75$1hfl$1@digitaldaemon.com -// @desc@ Internal error: ../ztc/cod2.c 4211 - -module dstress.run.b.bug_cod2_4211_C; - -struct Foo{ - byte a, b, c; -} - -int bar(Foo e){ - return e.a + e.b + e.c; -} - -int main() { - Foo d; - d.a=1; - d.b=2; - d.c=3; - assert(bar(d)==3); - return 0; -} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_D.d --- a/run/b/bug_cod2_4211_D.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Deewiant -// @date@ 2005-07-07 -// @uri@ news:dajn75$1hfl$1@digitaldaemon.com -// @desc@ Internal error: ../ztc/cod2.c 4211 - -module dstress.run.b.bug_cod2_4211_D; - -struct Foo{ - bit a, b, c; -} - -int bar(Foo e){ - return e.a*1 + e.b*2 + e.c*3; -} - -int main() { - Foo d; - d.a=true; - d.b=false; - d.c=true; - assert(bar(d)==4); - return 0; -} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_E.d --- a/run/b/bug_cod2_4211_E.d Thu Jul 21 17:21:59 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -// $HeadURL$ -// $Date$ -// $Author$ - -// @author@ Deewiant -// @date@ 2005-07-07 -// @uri@ news:dajn75$1hfl$1@digitaldaemon.com -// @desc@ Internal error: ../ztc/cod2.c 4211 - -module dstress.run.b.bug_cod2_4211_E; - -struct Foo{ - char a, b, c; -} - -int bar(Foo e){ - return e.a*1 + e.b*2 + e.c*3; -} - -int main() { - Foo d; - d.a=1; - d.b=2; - d.c=3; - assert(bar(d)==14); - return 0; -} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_S.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/b/bug_cod2_4211_S.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Deewiant +// @date@ 2005-07-07 +// @uri@ news:dajn75$1hfl$1@digitaldaemon.com +// @desc@ Internal error: ../ztc/cod2.c 4211 + +module dstress.run.b.bug_cod2_4211_S; + +struct Foo{ + ubyte a, b, c; +} + +int bar(Foo e){ + return e.a + e.b + e.c; +} + +int main() { + Foo d; + d.a=1; + d.b=2; + d.c=3; + assert(bar(d)==6); + return 0; +} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_T.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/b/bug_cod2_4211_T.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,26 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Deewiant +// @date@ 2005-07-07 +// @uri@ news:dajn75$1hfl$1@digitaldaemon.com +// @desc@ Internal error: ../ztc/cod2.c 4211 + +module dstress.run.b.bug_cod2_4211_T; + +struct Foo{ + ubyte a, b; +} + +int bar(Foo e){ + return e.a + e.b; +} + +int main() { + Foo d; + d.a=1; + d.b=2; + assert(bar(d)==3); + return 0; +} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_U.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/b/bug_cod2_4211_U.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Deewiant +// @date@ 2005-07-07 +// @uri@ news:dajn75$1hfl$1@digitaldaemon.com +// @desc@ Internal error: ../ztc/cod2.c 4211 + +module dstress.run.b.bug_cod2_4211_U; + +struct Foo{ + byte a, b, c; +} + +int bar(Foo e){ + return e.a + e.b + e.c; +} + +int main() { + Foo d; + d.a=1; + d.b=2; + d.c=3; + assert(bar(d)==3); + return 0; +} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_V.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/b/bug_cod2_4211_V.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Deewiant +// @date@ 2005-07-07 +// @uri@ news:dajn75$1hfl$1@digitaldaemon.com +// @desc@ Internal error: ../ztc/cod2.c 4211 + +module dstress.run.b.bug_cod2_4211_V; + +struct Foo{ + bit a, b, c; +} + +int bar(Foo e){ + return e.a*1 + e.b*2 + e.c*3; +} + +int main() { + Foo d; + d.a=true; + d.b=false; + d.c=true; + assert(bar(d)==4); + return 0; +} diff -r 0f5c200f5c90 -r 13382c0e879a run/b/bug_cod2_4211_W.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/b/bug_cod2_4211_W.d Thu Jul 21 18:44:29 2005 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Deewiant +// @date@ 2005-07-07 +// @uri@ news:dajn75$1hfl$1@digitaldaemon.com +// @desc@ Internal error: ../ztc/cod2.c 4211 + +module dstress.run.b.bug_cod2_4211_W; + +struct Foo{ + char a, b, c; +} + +int bar(Foo e){ + return e.a*1 + e.b*2 + e.c*3; +} + +int main() { + Foo d; + d.a=1; + d.b=2; + d.c=3; + assert(bar(d)==14); + return 0; +}