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 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
|
// PERMUTE_ARGS: -w
extern(C) int printf(const char*, ...);
int testswitch(string h)
{
int x;
switch (h)
{
case "abc":
printf("abc\n");
x = 4;
break;
case "foo":
printf("foo\n");
x = 1;
break;
case "bar":
printf("bar\n");
x = 2;
break;
default:
printf("default\n");
x = 3;
break;
}
return x;
}
void test1()
{
int i;
i = testswitch("foo");
printf("i = %d\n", i);
assert(i == 1);
assert(testswitch("abc") == 4);
assert(testswitch("bar") == 2);
assert(testswitch("hello") == 3);
printf("Success\n");
}
/*****************************************/
void test2()
{
int i;
switch (5)
{
case 3,4,5,6:
i = 20;
break;
case 7:
default:
assert(0);
}
assert(i == 20);
}
/*****************************************/
void test3()
{
int i;
switch (5)
{
case 7:
i = 6;
goto default;
default:
i = 8;
break;
case 3,4,5,6:
i = 20;
goto default;
}
assert(i == 8);
}
/*****************************************/
void test4()
{ int i;
switch (5)
{
case 3,4,5,6:
i = 20;
goto default;
case 7:
i = 6;
goto default;
default:
i = 8;
break;
}
assert(i == 8);
}
/*****************************************/
void test5()
{ int i;
switch (5)
{
case 7:
i = 6;
goto case;
default:
i = 8;
break;
case 3,4,5,6:
i = 20;
break;
}
assert(i == 20);
}
/*****************************************/
void test6()
{
int i;
switch (5)
{
case 7:
i = 6;
goto case 4;
default:
i = 8;
break;
case 3,4,5,6:
i = 20;
break;
}
assert(i == 20);
}
/*****************************************/
void test7()
{
int i;
switch (5)
{
case 3,4,5,6:
i = 20;
break;
case 7:
i = 6;
goto case 4;
default:
i = 8;
break;
}
assert(i == 20);
}
/*****************************************/
void test8()
{
dstring str = "xyz";
switch (str)
{
case "xyz":
printf("correct\n");
return;
case "abc":
break;
default:
assert(0);
}
assert(0);
}
/*****************************************/
void test9()
{
int i = 1;
switch(i)
{
case 2:
return;
case 1:
switch(i)
{
case 1:
goto case 2;
default:
assert(0);
}
default:
assert(0);
}
assert(0);
}
/*****************************************/
void test10()
{
int id1 = 0;
int id;
switch (id1)
{
case 0: ++id; goto case;
case 7: ++id; goto case;
case 6: ++id; goto case;
case 5: ++id; goto case;
case 4: ++id; goto case;
case 3: ++id; goto case;
case 2: ++id; goto case;
case 1: ++id; goto default;
default:
break;
}
assert(id == 8);
}
/*****************************************/
void test11()
{
long foo = 4;
switch (foo)
{
case 2: assert (false);
case 3: break;
case 4: break;
case 5: break;
default: assert(0);
}
}
/*****************************************/
void test12()
{
switch("#!")
{
case "#!": printf("----Found #!\n"); break;
case "\xFF\xFE"c: break;
default:
assert(0);
}
}
/*****************************************/
void test13()
{
switch("#!")
{
case "#!": printf("----Found #!\n"); break;
case "#\xFE"c: break;
default:
assert(0);
}
}
/*****************************************/
void foo14(A...)(int i)
{
switch (i)
{
foreach(a; A)
{
goto case;
case a:
printf("%d\n", a);
}
break;
default:
assert(0);
}
}
void bar14(A...)(int i)
{
switch (i)
{
foreach(j, a; A)
{
goto case;
case A[j]:
printf("a = %d, A[%zd] = %d\n", a, j, A[j]);
}
break;
default:
assert(0);
}
}
void test14()
{
foo14!(1,2,3,4,5)(1);
bar14!(1,2,3,4,5)(1);
}
/*****************************************/
const int X15;
immutable int Y15;
const int Z15;
int foo15(int i)
{
auto y = 1;
switch (i)
{
case X15:
y += 1;
goto case;
case 3:
y += 2;
break;
case Y15:
y += 20;
goto case;
case Z15:
y += 10;
break;
default:
y += 4;
break;
}
printf("y = %d\n", y);
return y;
}
static this()
{
X15 = 4;
Z15 = 5;
}
shared static this()
{
Y15 = 4;
}
void test15()
{
auto i = foo15(3);
assert(i == 3);
i = foo15(4);
assert(i == 4);
i = foo15(7);
assert(i == 5);
i = foo15(5);
assert(i == 11);
}
/*****************************************/
enum E16
{
A,B,C
}
void test16()
{
E16 e = E16.A;
final switch (e)
{
case E16.A:
case E16.B:
case E16.C:
{}
}
}
/*****************************************/
void test17()
{
int i = 2;
switch (i)
{
case 1: .. case 3:
i = 5;
break;
default:
assert(0);
}
if (i != 5)
assert(0);
switch (i)
{
case 1: .. case 3:
i = 4;
break;
case 5:
i = 6;
break;
default:
assert(0);
}
if (i != 6)
assert(0);
}
/*****************************************/
int test19()
{
enum foo{ bar }
foo x;
final switch(x){ case foo.bar: return 0; }
}
/*****************************************/
void test20()
{
switch(1)
{
mixin("case 0:{}");
case 1:
case 2:
default:
}
}
/*****************************************/
void hang3139(int x)
{
switch(x) {
case -9: .. case -1:
default:
}
}
int wrongcode3139(int x)
{
switch(x) {
case -9: .. case 2: return 3;
default:
return 4;
}
}
static assert(wrongcode3139(-5)==3);
// https://issues.dlang.org/show_bug.cgi?id=3139
static assert(!is(typeof(
(long x) { switch(x) { case long.max: .. case -long.max:
default:} return 4; }(3)
)));
/*****************************************/
void test7358()
{
static void test7358a()
{
enum X { A = 1, B = 2 }
auto x = X.A | X.B;
final switch(x)
{
case X.A:
case X.B:
break;
}
}
bool exception;
try
test7358a();
catch (Error)
exception = true;
assert(exception);
}
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=9263
void test9263()
{
enum Foo { A }
Foo f;
final switch (f) with(Foo)
{
case A:
return;
}
}
/*****************************************/
int bar21(int i)
{
switch (i)
{
// case 1: return 11;
case 2: return 12;
case 3: return 13;
case 4: return 14;
case 5: return 15;
case 6: return 16;
case 7: return 17;
case 8: return 18;
case 9: return 19;
case 10: return 20;
default: break;
}
switch (i)
{
case 11: return 21;
case 12: return 22;
case 13: return 23;
case 14: return 24;
case 15: return 25;
case 16: return 26;
case 17: return 27;
case 18: return 28;
case 19: return 29;
case 20: return 30;
default: return 31;
}
}
void test21()
{
// int j = bar(12);
// printf("j = %d\n", j);
for (int i = 2; i < 21; i++)
{
int j = bar21(i);
//printf("j = %d\n", j);
assert(j == i + 10);
}
}
/*****************************************/
int bar22(int i)
{
switch (i)
{
case 1: return i + 1;
case 10: return i + 2;
case 20: return i + 3;
case 50: return i + 4;
case 1000: return i + 5;
default: return 28;
}
}
void test22()
{
assert(bar22(1) == 2);
assert(bar22(10) == 12);
assert(bar22(20) == 23);
assert(bar22(50) == 54);
assert(bar22(1000) == 1005);
assert(bar22(0) == 28);
assert(bar22(5) == 28);
assert(bar22(15) == 28);
assert(bar22(25) == 28);
assert(bar22(58) == 28);
assert(bar22(2000) == 28);
}
/*****************************************/
long bar23(long i)
{
switch (i)
{
case 1: return i + 1;
case 0x10_0000_0000L: return i + 2;
case 0x20_0070_0000L: return i + 3;
case 0x50_0000_0000L: return i + 4;
case 0x1000_0000_8000L: return i + 5;
default: return 28;
}
}
void test23()
{
assert(bar23(1) == 2);
assert(bar23(0x10_0000_0000L) == 0x10_0000_0000L + 2);
assert(bar23(0x20_0070_0000L) == 0x20_0070_0000L + 3);
assert(bar23(0x50_0000_0000L) == 0x50_0000_0000L + 4);
assert(bar23(0x1000_0000_8000L) == 0x1000_0000_8000L + 5);
assert(bar23(0) == 28);
assert(bar23(58) == 28);
assert(bar23(0x10_0000_0000L+1) == 28);
assert(bar23(0x20_0070_0000L+5) == 28);
assert(bar23(0x50_0000_0000L+25) == 28);
assert(bar23(0x1000_0000_8000L+1) == 28);
}
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=14352
int transmogrify14352(int input)
{
int output = 0;
switch (input)
{
case 0, 1:
if (input == 0)
goto case;
else
output++;
goto case;
case 2:
output += 5;
goto case;
case 3:
output += 5;
break;
case 4, 5, 6:
goto default;
case 7:
case 8:
output += 20;
break;
default:
return -1;
}
return output;
}
void test14352()
{
assert(transmogrify14352(0) == 10);
}
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=14587
// DMD 2.067.1 generating crashing binary on OSX
struct Card {
int value;
int suit;
}
void foo14587(Card card) {
switch(card.value) {
case 4: case 5: case 6: case 11:
break;
default:
}
}
void test14587() {
auto card = Card(11, 1);
foo14587(card);
}
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=15396
// static immutable not recognized as constant within switch statement
void test15396()
{
static immutable Foo = "Foobar";
static const Bar = "BarFoo";
foreach (var; [ "Foobar", "BarFoo" ])
{
switch (var)
{
case Foo:
break;
case Bar:
break;
default:
assert(0, "test15396 failed");
}
}
}
/*****************************************/
// https://issues.dlang.org/show_bug.cgi?id=15538
struct S15538
{
int a = 0;
int b = 1;
}
int f15538(S15538 s)
{
switch (s.a)
{
case 0: return 10;
case 1: return 20;
case 2: return 30;
case 3: return 40;
default: return 99;
}
}
void test15538()
{
S15538 s;
assert(f15538(s) == 10); /* fails */
}
/*****************************************/
int main()
{
test1();
test2();
test3();
test4();
test5();
test6();
test7();
test8();
test9();
test10();
test11();
test12();
test13();
test14();
test15();
test16();
test17();
test19();
test20();
test7358();
test9263();
test21();
test22();
test23();
test14352();
test14587();
test15396();
test15538();
printf("Success\n");
return 0;
}
|