# HG changeset patch # User thomask # Date 1116703958 0 # Node ID 1300c1aab744f1c01e6a76221bde0afd43daaf75 # Parent f562f0755fea94836ea73b220c69f55976b35c29 StaticIfCondition (nocompile) diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_01_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_01_A.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,10 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 9 + +module dstress.nocompile.s.static_if_01_A; + +static if (1) + int i; \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_01_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_01_B.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,9 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 9 + +module dstress.nocompile.s.static_if_01_B; + +static if (1) \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_01_C.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_01_C.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,9 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 9 + +module dstress.nocompile.s.static_if_01_C; + +static if \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_01_D.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_01_D.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,9 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 9 + +module dstress.nocompile.s.static_if_01_D; + +static if else \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_02_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_02_A.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,13 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.s.static_if_02_A; + +void test(){ + int i; + static if(i){ + } +} \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_02_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_02_B.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,14 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 12 + +module dstress.nocompile.s.static_if_02_B; + +int i; + +void test(){ + static if(i){ + } +} \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_02_C.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_02_C.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,16 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 14 + +module dstress.nocompile.s.static_if_02_C; + +void test(int x){ + static int i; +} + +void test(){ + static if(i){ + } +} \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_03_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_03_A.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,14 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 12 + +module dstress.nocompile.s.static_if_03_A; + +void test(){ + int i; + static if(1){ + int i; + } +} \ No newline at end of file diff -r f562f0755fea -r 1300c1aab744 nocompile/s/static_if_03_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/s/static_if_03_B.d Sat May 21 19:32:38 2005 +0000 @@ -0,0 +1,19 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 18 + +module dstress.nocompile.s.static_if_03_B; + +void test(){ + static if(1){ + int a; + static if(1){ + int b; + static if(1) + int i; + } + } + int i; +} \ No newline at end of file