This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -622,7 +622,8 @@ void issue14626()
622
622
static assert (is (typeof (caa.byValue ().front) == const int ));
623
623
}
624
624
625
- // / test duplicated keys in AA literal (issue 15290)
625
+ // / test duplicated keys in AA literal
626
+ // / https://issues.dlang.org/show_bug.cgi?id=15290
626
627
void issue15290 ()
627
628
{
628
629
string [int ] aa = [ 0 : " a" , 0 : " b" ];
@@ -657,7 +658,8 @@ void issue15367()
657
658
assert (a1 <= a2);
658
659
}
659
660
660
- // / test AA as key (Issue 16974)
661
+ // / test AA as key
662
+ // / https://issues.dlang.org/show_bug.cgi?id=16974
661
663
void issue16974 ()
662
664
{
663
665
int [int ] a = [1 : 2 ], a2 = [1 : 2 ];
@@ -669,7 +671,8 @@ void issue16974()
669
671
assert (typeid (a).getHash(&a) == typeid (a).getHash(&a2));
670
672
}
671
673
672
- // / test safety for alias-this'd AA that have unsafe opCast (issue 18071)
674
+ // / test safety for alias-this'd AA that have unsafe opCast
675
+ // / https://issues.dlang.org/show_bug.cgi?id=18071
673
676
void issue18071 ()
674
677
{
675
678
static struct Foo
Original file line number Diff line number Diff line change 1
- // Issue 16594
1
+ // https://issues.dlang.org/show_bug.cgi?id= 16594
2
2
import core.stdc.stdio ;
3
3
4
4
shared static ~this ()
Original file line number Diff line number Diff line change @@ -373,7 +373,8 @@ void pr2243()
373
373
assert (h32 == rth32);
374
374
assert (h33 == rth33);
375
375
376
- assert (hashOf(null , 0 ) != hashOf(null , 123456789 )); // issue 18932
376
+ // https://issues.dlang.org/show_bug.cgi?id=18932
377
+ assert (hashOf(null , 0 ) != hashOf(null , 123456789 ));
377
378
378
379
static size_t tiHashOf (T)(T var)
379
380
{
You can’t perform that action at this time.
0 commit comments