Search

July 14, 2021
Learn »
...error message");
    // unconditional structure code
}

unittest {
    gudtUGC!int;
}
```

which fails with

```
example.d(4): Error...
July 14, 2021
Learn »
...struct gudtUGC(T) {
    static assert(isString!T, "error message");
    // unconditional structure code
}
```

case 2:

```d...
July 14, 2021
Learn »
...to the `else` branch makes the assert message show up:

    } else {
        alias ResultType = void;
        static...
July 12, 2021
Issues »
...15,39):        Previous initialization is here.
---

The error message is false: there is only a...
July 12, 2021
Issues »
...123;
    SumType!(int*) s = &n;
}
---

The error message is:

---
Error: reference to local variable `n...
July 11, 2021
Issues »
...dmd pull request #12852 "Fix issue 14064 - Error message about @ attributes incomplete" was merged into...
July 09, 2021
Learn »
...d
string s = __FUNCTION__ ~ "This is an error message";
```

And no GC allocations occur. Even...
July 09, 2021
Issues »
...issue 14064 - Error message about @ attributes incomplete" fixing this issue:

- fix issue 14064 - message about...
July 09, 2021
Learn »
...nogc
void main() {
  enum msg = __FUNCTION__ ~ "This is an error message";
  assert(false, msg);
}

Ali
July 09, 2021
Learn »
...nsecs";
```

and I get the following error message:

"Error: cannot implicitly convert expression \`dur.total...
122 123 124 125 126 127 128 129 130 131 132
Next ›   Last »