Search

November 09
DIP Ideas »
...there is no implicit argumentless constructor so Angle a3 = new Angle() won't work anymore.
March 18
DIP Development »
...int)(a2);
    assert(s1 == s2); // TODO
    auto a3 = [a1, a2];
    auto s3 = [s1, s2]; // TODO...
October 18, 2023
Issues »
...a2);");
    mixin ("enum\u2028a3 = b; pragma (msg, a3);");
}
$ dmd lsps.d
8
lsps.d-mixin...
October 16, 2023
General »
...a2);");
   mixin ("enum\ra3 = b; pragma (msg, a3);");
}
$ dmd ret.d
8
8
8
```

Why...
October 15, 2023
General »
...a2);");
   mixin ("enum\u2028a3 = b; pragma (msg, a3);");
}
$ dmd lsps.d
8
lsps.d-mixin...
November 29, 2022
Issues »
...a2; // ok

    const(Sub delegate())[] a3;
    const(Super delegate())[] b3=a3; // error
}

All of those...
June 12, 2022
Duyuru »
...a2[2][1] = 42;
  // a3[2][1] = 42;

  writeln(a1);
  writeln(a2);
  // writeln(a3);
}
+/

Ali
March 17, 2022
Issues »
...with 2.065, so it's a regression: */
    S3* a3;
    immutable int** r3 = f3(a3);
}
```

--
January 14, 2022
Genel »
...alias a1 = Point;
alias a2 = Line;
alias a3 = Rectangle;
alias a4 = Node;
void main()
{
//                            a1...
December 07, 2021
Issues »
...of type `S` to `int`
    struct S a3[1] = {(struct S){0}}; // Error: cannot implicitly...
« First   ‹ Prev
1 2
Next ›   Last »