April 04, 2022 Issues » [Issue 22969] Can't mixin name of manifest constant on right-hand side of alias declaration | |||
|---|---|---|---|
| |||
...manifest constant on right-hand side of alias declaration" fixing this issue: - Fix Issue 22969... | |||
April 04, 2022 Announce » D Language Foundation Monthly Meeting Summary for March 2022 | |||
|---|---|---|---|
| |||
...More inference is the way to go. ### alias Mathias says we resolve aliases in the... | |||
April 04, 2022 Issues » [Issue 22981] Another forward reference bug involving a string mixin | |||
|---|---|---|---|
| |||
...mixin ("enum E_ {", S.attr, "}");
}
struct S
{
alias E = E_!();
E e;
enum attr = "a";
}
-- | |||
April 04, 2022 Issues » [Issue 22981] Another forward reference bug involving a string mixin | |||
|---|---|---|---|
| |||
...template E_()
{
mixin ("enum E_ {", S.attr, "}");
}
alias E = E_!();
struct S
{
E e;
enum... | |||
April 03, 2022 Issues » [Issue 11150] Symbol alias of member function impossible to be called | |||
|---|---|---|---|
| |||
...de
Summary|Allow aliasing of an |Symbol alias of member
|aggregate template instance |function impossible... | |||
April 03, 2022 Issues » [Issue 22969] Can't mixin name of manifest constant on right-hand side of alias declaration | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=22969 --- Comment #2 from moonlightsentinel@disroot.org... | |||
April 02, 2022 Issues » [Issue 22969] Can't mixin name of manifest constant on right-hand side of alias declaration | |||
|---|---|---|---|
| |||
...Failure with output: onlineapp.d(2): Error: alias `onlineapp.a` cannot alias an expression `0` -- | |||
April 02, 2022 Issues » [Issue 22975] New: 3 cyclic aliases with meaningful overloads not caught [ice] | |||
|---|---|---|---|
| |||
...void foo(int){};
alias bar=foo;
void bar(bool){}
alias foobar=bar;
alias foo=foobar;
```
-- | |||
April 02, 2022 Issues » [Issue 22969] New: Can't mixin name of manifest constant on right-hand side of alias declaration | |||
|---|---|---|---|
| |||
...0;
alias a = mixin("e");
---
The error message is:
---
onlineapp.d(2): Error: alias `onlineapp... | |||
April 02, 2022 Learn » Re: Can std.variant be used with std.container.rbtree? | |||
|---|---|---|---|
| |||
...import std.sumtype; import std.algorithm : cmp; alias VarType = SumType!(double, ubyte[]); int opCmp(const... | |||
Copyright © 1999-2021 by the D Language Foundation