Search

May 27, 2023
Issues »
...Fix Issue 23940 - std.getopt does not assert with options that only d…" fixing this...
May 27, 2023
Issues »
...ID: 23940
           Summary: std.getopt does not assert with options that only
                    differ in case...
May 26, 2023
Issues »
...t. For example:

```d
unittest
{
    int x;
    assert(x == 1);
}
void main() {}
```

Compiled with ldc...
May 25, 2023
General »
...unsigned char` is only 8-bit.)

An `assert(false)` leading to dead code is indeed...
May 25, 2023
General »
...lets me inject assert(false) expressions during development:

void foo() {
  someCode();

  assert(false, "some information...
May 25, 2023
General »
thanks for the tips, can not use issues.dlang.org.  if some one have account...
May 24, 2023
General »
...that fails is an intended breaking: `static assert(__traits(isSame, (e), 3))` (where `e` is...
May 23, 2023
General »
...ref  int function()  ) { }

static assert(!is( typeof(&a) == typeof(&b) ));
static assert( is( typeof(&a...
May 22, 2023
General »
Report to https://issues.dlang.org/. That's probably a problem with how stat_t...
May 22, 2023
General »
Runtime assert doesn't work at module scope. Also, it's usually better to catch...
76 77 78 79 80 81 82 83 84 85 86 87
Next ›   Last »