November 09 DIP Ideas » Named constructors | |||
|---|---|---|---|
| |||
...there is no implicit argumentless constructor so Angle a3 = new Angle() won't work anymore. | |||
March 18 DIP Development » Re: First Draft: Implicit Conversion of Template Instantiations | |||
|---|---|---|---|
| |||
...int)(a2);
assert(s1 == s2); // TODO
auto a3 = [a1, a2];
auto s3 = [s1, s2]; // TODO... | |||
October 18, 2023 Issues » [Issue 24190] New: Identifier tokenizer is greedy steals new line characters | |||
|---|---|---|---|
| |||
...a2);");
mixin ("enum\u2028a3 = b; pragma (msg, a3);");
}
$ dmd lsps.d
8
lsps.d-mixin... | |||
October 16, 2023 General » Re: Handling of U+2028 and U+2029 in source code | |||
|---|---|---|---|
| |||
...a2);");
mixin ("enum\ra3 = b; pragma (msg, a3);");
}
$ dmd ret.d
8
8
8
```
Why... | |||
October 15, 2023 General » Handling of U+2028 and U+2029 in source code | |||
|---|---|---|---|
| |||
...a2);");
mixin ("enum\u2028a3 = b; pragma (msg, a3);");
}
$ dmd lsps.d
8
lsps.d-mixin... | |||
November 29, 2022 Issues » [Issue 23519] New: Unnecessary and inconsistent restrictions on delegate subtyping | |||
|---|---|---|---|
| |||
...a2; // ok
const(Sub delegate())[] a3;
const(Super delegate())[] b3=a3; // error
}
All of those... | |||
June 12, 2022 Duyuru » Re: Pazar Sohbeti: 12 Haziran'22, TSİ.11 | |||
|---|---|---|---|
| |||
...a2[2][1] = 42; // a3[2][1] = 42; writeln(a1); writeln(a2); // writeln(a3); } +/ Ali | |||
March 17, 2022 Issues » [Issue 21660] [REG 2.066.0] cannot convert unique immutable(int)** to immutable | |||
|---|---|---|---|
| |||
...with 2.065, so it's a regression: */
S3* a3;
immutable int** r3 = f3(a3);
}
```
-- | |||
January 14, 2022 Genel » Sınıf&Yapılarda Hafıza Yönetimi'ne Giriş | |||
|---|---|---|---|
| |||
...alias a1 = Point;
alias a2 = Line;
alias a3 = Rectangle;
alias a4 = Node;
void main()
{
// a1... | |||
December 07, 2021 Issues » [Issue 22576] New: ImportC: cannot implicitly convert expression `S(0)` of type `S` to `int` in an S array | |||
|---|---|---|---|
| |||
...of type `S` to `int`
struct S a3[1] = {(struct S){0}}; // Error: cannot implicitly... | |||
Copyright © 1999-2021 by the D Language Foundation