Search

February 20, 2023
General »
...what happens here. Is it that an assert in sweep() triggers, and this[1] scope...
February 20, 2023
Genel »
...ların token'nını çözdüğü için şu test assert'e
> uğramıyor:

Aklıma senin de düşünmüş olduğun...
February 20, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=13810

RazvanN <razvan.nitu1305@gmail.com> changed...
February 19, 2023
Genel »
...class))
  {
    private Node items, root;
  }
  else static assert(0, "\nIt's not a container!");
//..
```

Tam...
February 18, 2023
General »
...isInputRange(R) =
    __traits(compiles, (R r) {
        static assert(
            is(typeof(R.init) == R) &&
            is(typeof...
February 17, 2023
General »
...run this program

```
import std.stdio;

unittest {
  assert(3 == 2);
  scope(failure) { writeln("running failure...
February 16, 2023
General »
```
unittest
{
    import std.stdio;

    scope(failure) writeln("Test failed");
    assert(1 + 1 == 3);
}
```
February 15, 2023
Issues »
...there yet to test this
    // grammar
    i = ((int[3])a)[2];
    assert(i == 3, __LINE__);
}
```

--
February 15, 2023
Issues »
...ok"
  213 | _Static_assert(u'ab' == 0x610062, "ok");
      | ^~~~~~~~~~~~~~

Test case:
```
_Static_assert(u'ab' == 0x610062...
February 15, 2023
Issues »
...ok"
  206 | _Static_assert(sizeof(u'a') == 4, "ok");
      | ^~~~~~~~~~~~~~

Test case:
```
_Static_assert(sizeof(u...
99 100 101 102 103 104 105 106 107 108 109
Next ›   Last »