1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
import core.vararg;
import core.stdc.stdio;
/*********************************************************/
void ifthen(bool cond, lazy void dg)
{
if (cond)
dg();
}
void ifthen(bool cond, lazy void dgthen, lazy void dgelse)
{
if (cond)
dgthen();
else
dgelse();
}
void dotimes(int i, lazy int dg)
{
for (int j = 0; j < i; j++)
dg();
}
void switcher(bool delegate()[] cases...)
{
foreach (c; cases)
{
if (c())
break;
}
}
bool scase(bool b, lazy void dg)
{
if (b)
{
dg();
return true;
}
return false;
}
bool sdefault(lazy void dg)
{
dg();
return true;
}
void whiler(lazy bool cond, lazy void bdy)
{
while (cond())
bdy();
}
void test1()
{
int x = 3;
dotimes(5, printf("%d\n", ++x));
ifthen(true, printf("yes\n"));
ifthen(false, printf("no\n"));
ifthen(true, printf("yes\n"), printf("no\n"));
ifthen(false, printf("yes\n"), printf("no\n"));
int v = 2;
switcher(
scase(v == 1, printf("it is 1\n")),
scase(v == 2, printf("it is 2\n")),
scase(v == 3, printf("it is 3\n")),
sdefault( printf("it is default\n"))
);
whiler( x < 100,
(){ printf("%d\n", x); x *= 2; }()
);
}
/*********************************************************/
void fooa(lazy void dg)
{
dg();
}
void test2()
{
fooa(cast(void)null);
}
/*********************************************************/
void dotimes3(int count, lazy void exp)
{
for (int i = 0; i < count; i++)
exp;
}
void bar3(...)
{
assert(_arguments.length == 1);
assert(va_arg!int(_argptr) == 14);
}
void arr3(...)
{
assert(_arguments.length == 1);
assert(va_arg!(int[])(_argptr) == [1,0,0,0,0,0,0,0,0,9]);
}
void abc3(int* p)
{
assert(*p == 3);
}
void test3()
{
int x = 3;
dotimes3(10, abc3(&x));
dotimes3(10, ++x);
dotimes3(1, bar3(++x));
int[10] a = new int[10];
a[0] = 1;
a[$ - 1] = 9;
dotimes3(3, arr3(a[0..$]));
}
/*********************************************************/
int p4;
void foo4(void* delegate()[] dgs...)
{
assert(dgs.length == 4);
assert(dgs[0]() == cast(void*)&p4);
assert(dgs[1]() == cast(void*)&p4);
assert(dgs[2]() == null);
assert(dgs[3] == null);
}
void test4()
{
void *abc()
{
return cast(void*)&p4;
}
foo4(&abc, cast(void* delegate())&abc, null, cast(void* delegate())null);
}
/*********************************************************/
bool nextis(void delegate() dgpositive = {})
{
return true;
}
bool looping(lazy bool condition)
{
return true;
}
void test5()
{
looping(nextis({}));
looping(nextis({}));
}
/*********************************************************/
void foo6(lazy int expr, ...)
{
char[] tmp_msg = va_arg!(char[])(_argptr);
if (cast(int)(tmp_msg.ptr)=="food_for_thought".length)
assert(0, "length is in the pointer!");
assert(tmp_msg=="food_for_thought");
}
int bar6() { return 3; }
void test6()
{
foo6(bar6(),"food_for_thought");
}
/*********************************************************/
void foo7(long delegate()[] dg...)
{
assert(dg[0]() == 1024);
assert(dg[1]() == 1024);
}
void bar7(lazy long n)
{
assert(n == 1024);
}
void test7()
{
int n = 1024;
foo7(n, n);
bar7(n);
}
/*********************************************************/
struct Bug5750 { int a, b; }
pure Bug5750 bug5750(lazy int y) {
Bug5750 retval;
retval.a = y;
retval.b = y;
return retval;
}
pure void test5750a() {
auto z1 = bug5750(3);
assert(z1 == Bug5750(3, 3));
auto z2 = bug5750(z1.a);
assert(z2 == Bug5750(3, 3));
auto z3 = bug5750(z1.a+z2.a+3);
assert(z3 == Bug5750(9, 9));
auto z4 = bug5750(++z1.a); // expected???
assert(z4 == Bug5750(4, 5));
assert(z1 == Bug5750(5, 3));
}
int bug5750Global = 7;
void test5750b() {
auto z4 = bug5750(bug5750Global);
assert(z4 == Bug5750(7, 7));
auto z5 = bug5750(++bug5750Global);
assert(z5 == Bug5750(8, 9)); // expected???
assert(bug5750Global == 9);
}
// Note: also need to make up some fail-compilation tests.
/*********************************************************/
T calcLazy6682(T)(lazy T n)
{
return n;
}
int purefunc6682() pure
{
return calcLazy6682(1);
}
void test6682()
{
assert(purefunc6682() == 1);
}
/*********************************************************/
// https://issues.dlang.org/show_bug.cgi?id=9109
void test9109()
{
void foo(int delegate()[] dgs ...)
{
assert(dgs[0]() + dgs[1]() == 1 + 13);
}
int x = 10;
int delegate() dg;
foo({ return 1; }, { return 3+x; }, dg, null);
}
/*********************************************************/
// https://issues.dlang.org/show_bug.cgi?id=15835
class C15835 {}
string fun15835(lazy string s)
{
return s;
}
void test15835()
{
auto c = new C15835;
auto s = typeid(c).name;
assert(fun15835(typeid(c).name) == s);
auto a = [c];
assert(fun15835(typeid(a[0]).name) == s);
}
/*********************************************************/
int main()
{
test1();
test2();
test3();
test4();
test5();
test6();
test7();
test5750a();
test5750b();
test6682();
test9109();
test15835();
printf("Success\n");
return 0;
}
|