mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
Replace d.puremagic.com links with issues.dlang.org
This commit is contained in:
parent
b665b5fe06
commit
e2c591103a
3 changed files with 11 additions and 11 deletions
|
@ -239,7 +239,7 @@ void test6()
|
||||||
/*******************************************/
|
/*******************************************/
|
||||||
|
|
||||||
/+
|
/+
|
||||||
// http://d.puremagic.com/issues/show_bug.cgi?id=3722
|
// https://issues.dlang.org/show_bug.cgi?id=3722
|
||||||
|
|
||||||
class Bug3722A
|
class Bug3722A
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// PERMUTE_ARGS:
|
// PERMUTE_ARGS:
|
||||||
|
|
||||||
//http://d.puremagic.com/issues/show_bug.cgi?id=5415
|
//https://issues.dlang.org/show_bug.cgi?id=5415
|
||||||
|
|
||||||
@safe
|
@safe
|
||||||
void pointercast()
|
void pointercast()
|
||||||
|
@ -31,7 +31,7 @@ void pointercast2()
|
||||||
|
|
||||||
@safe
|
@safe
|
||||||
void pointerarithmetic()
|
void pointerarithmetic()
|
||||||
{//http://d.puremagic.com/issues/show_bug.cgi?id=4132
|
{//https://issues.dlang.org/show_bug.cgi?id=4132
|
||||||
void* a;
|
void* a;
|
||||||
int b;
|
int b;
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ void use__gshared()
|
||||||
|
|
||||||
@safe
|
@safe
|
||||||
void voidinitializers()
|
void voidinitializers()
|
||||||
{//http://d.puremagic.com/issues/show_bug.cgi?id=4885
|
{//https://issues.dlang.org/show_bug.cgi?id=4885
|
||||||
static assert(!__traits(compiles, () @safe { uint* ptr = void; } ));
|
static assert(!__traits(compiles, () @safe { uint* ptr = void; } ));
|
||||||
static assert( __traits(compiles, () @safe { uint i = void; } ));
|
static assert( __traits(compiles, () @safe { uint i = void; } ));
|
||||||
static assert( __traits(compiles, () @safe { uint[2] a = void; } ));
|
static assert( __traits(compiles, () @safe { uint[2] a = void; } ));
|
||||||
|
@ -290,14 +290,14 @@ void voidinitializers()
|
||||||
|
|
||||||
@safe
|
@safe
|
||||||
void pointerindex()
|
void pointerindex()
|
||||||
{//http://d.puremagic.com/issues/show_bug.cgi?id=9195
|
{//https://issues.dlang.org/show_bug.cgi?id=9195
|
||||||
static assert(!__traits(compiles, () @safe { int* p; auto a = p[30]; }));
|
static assert(!__traits(compiles, () @safe { int* p; auto a = p[30]; }));
|
||||||
static assert( __traits(compiles, () @safe{ int* p; auto a = p[0]; }));
|
static assert( __traits(compiles, () @safe{ int* p; auto a = p[0]; }));
|
||||||
}
|
}
|
||||||
|
|
||||||
@safe
|
@safe
|
||||||
void basiccast()
|
void basiccast()
|
||||||
{//http://d.puremagic.com/issues/show_bug.cgi?id=5088
|
{//https://issues.dlang.org/show_bug.cgi?id=5088
|
||||||
auto a = cast(int)cast(const int)1;
|
auto a = cast(int)cast(const int)1;
|
||||||
auto b = cast(real)cast(const int)1;
|
auto b = cast(real)cast(const int)1;
|
||||||
auto c = cast(real)cast(const real)2.0;
|
auto c = cast(real)cast(const real)2.0;
|
||||||
|
|
|
@ -5063,7 +5063,7 @@ class Bar6847 : Foo6847
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
// http://d.puremagic.com/issues/show_bug.cgi?id=6488
|
// https://issues.dlang.org/show_bug.cgi?id=6488
|
||||||
|
|
||||||
struct TickDuration
|
struct TickDuration
|
||||||
{
|
{
|
||||||
|
@ -6727,14 +6727,14 @@ void test9477()
|
||||||
static bool isEq (T1, T2)(T1 s1, T2 s2) { return s1 == s2; }
|
static bool isEq (T1, T2)(T1 s1, T2 s2) { return s1 == s2; }
|
||||||
static bool isNeq(T1, T2)(T1 s1, T2 s2) { return s1 != s2; }
|
static bool isNeq(T1, T2)(T1 s1, T2 s2) { return s1 != s2; }
|
||||||
|
|
||||||
// Must be outside the loop due to http://d.puremagic.com/issues/show_bug.cgi?id=9748
|
// Must be outside the loop due to https://issues.dlang.org/show_bug.cgi?id=9748
|
||||||
int order;
|
int order;
|
||||||
// Must be outside the loop due to http://d.puremagic.com/issues/show_bug.cgi?id=9756
|
// Must be outside the loop due to https://issues.dlang.org/show_bug.cgi?id=9756
|
||||||
auto checkOrder(bool dyn, uint expected)()
|
auto checkOrder(bool dyn, uint expected)()
|
||||||
{
|
{
|
||||||
assert(order==expected);
|
assert(order==expected);
|
||||||
order++;
|
order++;
|
||||||
// Use temporary ("v") to work around http://d.puremagic.com/issues/show_bug.cgi?id=9402
|
// Use temporary ("v") to work around https://issues.dlang.org/show_bug.cgi?id=9402
|
||||||
auto v = cast(Select9477!(dyn, string, char[1]))"a";
|
auto v = cast(Select9477!(dyn, string, char[1]))"a";
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
@ -6742,7 +6742,7 @@ void test9477()
|
||||||
foreach (b1; Tuple9477!(false, true))
|
foreach (b1; Tuple9477!(false, true))
|
||||||
foreach (b2; Tuple9477!(false, true))
|
foreach (b2; Tuple9477!(false, true))
|
||||||
{
|
{
|
||||||
version (D_PIC) {} else version (D_PIE) {} else // Work around http://d.puremagic.com/issues/show_bug.cgi?id=9754
|
version (D_PIC) {} else version (D_PIE) {} else // Work around https://issues.dlang.org/show_bug.cgi?id=9754
|
||||||
{
|
{
|
||||||
assert( isEq (cast(Select9477!(b1, string, char[0]))"" , cast(Select9477!(b2, string, char[0]))"" ));
|
assert( isEq (cast(Select9477!(b1, string, char[0]))"" , cast(Select9477!(b2, string, char[0]))"" ));
|
||||||
assert(!isNeq(cast(Select9477!(b1, string, char[0]))"" , cast(Select9477!(b2, string, char[0]))"" ));
|
assert(!isNeq(cast(Select9477!(b1, string, char[0]))"" , cast(Select9477!(b2, string, char[0]))"" ));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue