Search

June 05, 2022
Learn »
...payload;
    return this;
  }

  int getter()
  {
    return payload;
  }
  alias getter this;
}

import std.stdio, std.format...
June 05, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23160

Walter Bright <bugzilla@digitalmars.com> changed...
June 05, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23160

Walter Bright <bugzilla@digitalmars.com> changed...
June 05, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23160

Walter Bright <bugzilla@digitalmars.com> changed...
June 05, 2022
Issues »
...id=23160

          Issue ID: 23160
           Summary: template alias parameters can be used to bypass escape...
June 05, 2022
Issues »
...the argument `f` supplied to the parameter `alias F` of `Forward` must be regarded as...
June 04, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=19945

Richard Cattermole <alphaglosined@gmail.com> changed...
June 04, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=19945

Walter Bright <bugzilla@digitalmars.com> changed...
June 03, 2022
Learn »
...import std.stdio;

/* toggle array:

alias chr = char*;
auto data = [' '];/*/

alias chr = immutable(char*);
auto...
June 02, 2022
Issues »
...is confusing. Reduced:

void main() {
    template b(alias d) {
        enum b = ``;
    }

    int a;

    {
        pragma(msg...
214 215 216 217 218 219 220 221 222 223 224
Next ›   Last »