Search

February 28, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=23509

Dennis <dkorpel@live.nl> changed:

           What...
February 27, 2023
Issues »
...nogc{
    foreach(ref x;s)
        return x;
    assert(0);
}

int *escapeStack()@safe{
    S s;
    return...
February 27, 2023
Genel »
...dizi.length = 10;           // (2)

    dizi.popFront();            // (3)
    assert(dizi.length == 9);   // (4) Evet, 9 ama...
February 28, 2023
Announce »
...T)(T thing) {
	version(Feature) {

	} else
		static assert(0, "feature not had, can't do...
February 26, 2023
Issues »
...4]);
    assert(clamp!int4([0, 1, -2, 3]).array == [0, 1, -1, 1]);
    assert(clamp...
February 26, 2023
Issues »
...ubyte x = a[i];
        ubyte v = x >= 1 ? 255 : 0;
        assert(cast(int)v == 255);
    }
}
```

--
February 26, 2023
General »
...a)
    {
        ubyte v = x >= 1 ? 255 : 0;
        assert(v == 255); /* fails; should pass */
    }
}
```

Astonishing.

Filed...
February 26, 2023
Issues »
...a)
    {
        ubyte v = x >= 1 ? 255 : 0;
        assert(v == 255); /* fails; should pass */
    }
}

dmd2.102...
February 25, 2023
Issues »
...s)@safe{
    foreach(x;s)
        return x;
    assert(0);
}

void main()@safe{
    auto s=new...
February 25, 2023
Issues »
...s)
        return x;
    assert(0);
}

void main(){
    auto s=new S;
    assert(&foo(*s) is...
96 97 98 99 100 101 102 103 104 105 106 107
Next ›   Last »