@@ -338,11 +338,9 @@ void pr2243()
338
338
enum Bar vsexpr = Bar ();
339
339
enum int [int ] aaexpr = [99 :2 , 12 :6 , 45 :4 ];
340
340
enum Gun eexpr = Gun.A;
341
- enum cdouble cexpr = 7 + 4i;
342
341
enum Foo [] staexpr = [Foo (), Foo (), Foo ()];
343
342
enum Bar [] vsaexpr = [Bar (), Bar (), Bar ()];
344
343
enum realexpr = 7.88 ;
345
- enum raexpr = [8.99L + 86i, 3.12L + 99i, 5.66L + 12i];
346
344
enum nullexpr = null ;
347
345
enum plstr = Plain();
348
346
enum plarrstr = [Plain(), Plain(), Plain()];
@@ -366,7 +364,6 @@ void pr2243()
366
364
enum h10 = vsexpr.hashOf();
367
365
enum h11 = aaexpr.hashOf();
368
366
enum h12 = eexpr.hashOf();
369
- enum h13 = cexpr.hashOf();
370
367
enum h14 = hashOf(new Boo);
371
368
enum h15 = staexpr.hashOf();
372
369
enum h16 = hashOf([new Boo, new Boo, new Boo]);
@@ -387,7 +384,6 @@ void pr2243()
387
384
auto h27 = ptrexpr.hashOf();
388
385
389
386
enum h28 = realexpr.hashOf();
390
- enum h29 = raexpr.hashOf();
391
387
enum h30 = nullexpr.hashOf();
392
388
enum h31 = plstr.hashOf();
393
389
enum h32 = plarrstr.hashOf();
@@ -405,7 +401,6 @@ void pr2243()
405
401
auto v10 = vsexpr;
406
402
auto v11 = aaexpr;
407
403
auto v12 = eexpr;
408
- auto v13 = cexpr;
409
404
auto v14 = new Boo;
410
405
auto v15 = staexpr;
411
406
auto v16 = [new Boo, new Boo, new Boo];
@@ -427,7 +422,6 @@ void pr2243()
427
422
auto v26 = dgexpr;
428
423
auto v27 = ptrexpr;
429
424
auto v28 = realexpr;
430
- auto v29 = raexpr;
431
425
432
426
// runtime hashes
433
427
auto rth1 = hashOf(v1);
@@ -442,7 +436,6 @@ void pr2243()
442
436
auto rth10 = hashOf(v10);
443
437
auto rth11 = hashOf(v11);
444
438
auto rth12 = hashOf(v12);
445
- auto rth13 = hashOf(v13);
446
439
auto rth14 = hashOf(v14);
447
440
auto rth15 = hashOf(v15);
448
441
auto rth16 = hashOf(v16);
@@ -460,7 +453,6 @@ void pr2243()
460
453
auto rth26 = hashOf(v26);
461
454
auto rth27 = hashOf(v27);
462
455
auto rth28 = hashOf(v28);
463
- auto rth29 = hashOf(v29);
464
456
465
457
auto rth31 = hashOf(v31);
466
458
auto rth32 = hashOf(v32);
@@ -478,7 +470,6 @@ void pr2243()
478
470
assert (h10 == rth10);
479
471
assert (h11 == rth11);
480
472
assert (h12 == rth12);
481
- assert (h13 == rth13);
482
473
assert (h14 == rth14);
483
474
assert (h15 == rth15);
484
475
assert (h16 == rth16);
@@ -493,8 +484,7 @@ void pr2243()
493
484
assert(h25 == rth25);
494
485
assert(h26 == rth26);
495
486
assert(h27 == rth27);
496
- assert(h28 == rth28);
497
- assert(h29 == rth29);*/
487
+ assert(h28 == rth28);*/
498
488
assert (h30 == rth30);
499
489
assert (h31 == rth31);
500
490
assert (h32 == rth32);
@@ -520,7 +510,6 @@ void pr2243()
520
510
auto tih10 = tiHashOf(v10);
521
511
auto tih11 = tiHashOf(v11);
522
512
auto tih12 = tiHashOf(v12);
523
- auto tih13 = tiHashOf(v13);
524
513
auto tih14 = tiHashOf(v14);
525
514
auto tih15 = tiHashOf(v15);
526
515
auto tih16 = tiHashOf(v16);
@@ -536,7 +525,6 @@ void pr2243()
536
525
auto tih26 = tiHashOf(v26);
537
526
auto tih27 = tiHashOf(v27);
538
527
auto tih28 = tiHashOf(v28);
539
- auto tih29 = tiHashOf(v29);
540
528
auto tih30 = tiHashOf(v30);
541
529
auto tih31 = tiHashOf(v31);
542
530
auto tih32 = tiHashOf(v32);
@@ -554,7 +542,6 @@ void pr2243()
554
542
// assert(tih10 == rth10); // need compiler-generated __xtoHash changes
555
543
assert (tih11 == rth11);
556
544
assert (tih12 == rth12);
557
- assert (tih13 == rth13);
558
545
assert (tih14 == rth14);
559
546
assert (tih15 == rth15);
560
547
assert (tih16 == rth16);
@@ -570,7 +557,6 @@ void pr2243()
570
557
assert (tih26 == rth26);
571
558
assert (tih27 == rth27);
572
559
assert (tih28 == rth28);
573
- assert (tih29 == rth29);
574
560
assert (tih30 == rth30);
575
561
assert (tih31 == rth31);
576
562
assert (tih32 == rth32);
0 commit comments