Thread overview | |||||
---|---|---|---|---|---|
|
February 16, 2018 getSymbolsByUDA does not take private symbols under consideration. Should I file a bug? | ||||
---|---|---|---|---|
| ||||
Hello, The code below: ================ import std.traits; enum Attr; class MyClass { private @Attr int a; static assert(getSymbolsByUDA!(typeof(this), MyClass).length == 1); } ================ does not compile as static assertion fails. Making the filed a public makes it compile properly. Should I file a bug or is by design? |
February 16, 2018 Re: getSymbolsByUDA does not take private symbols under consideration. Should I file a bug? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Piotr Mitana | On Friday, 16 February 2018 at 09:26:47 UTC, Piotr Mitana wrote: > Hello, > > The code below: > > ================ > import std.traits; > > enum Attr; > > class MyClass > { > private @Attr int a; > static assert(getSymbolsByUDA!(typeof(this), MyClass).length == 1); > } > ================ > > does not compile as static assertion fails. Making the filed a public makes it compile properly. Should I file a bug or is by design? getSymbolsByUDA seems to have some visibility thing going on. Related to https://issues.dlang.org/show_bug.cgi?id=17973 perhaps? Though that only gives deprecation warnings, not errors. |
February 16, 2018 Re: getSymbolsByUDA does not take private symbols under consideration. Should I file a bug? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Piotr Mitana | On Friday, 16 February 2018 at 09:26:47 UTC, Piotr Mitana wrote:
> Hello,
>
> The code below:
>
> ================
> import std.traits;
>
> enum Attr;
>
> class MyClass
> {
> private @Attr int a;
> static assert(getSymbolsByUDA!(typeof(this), MyClass).length == 1);
> }
> ================
>
> does not compile as static assertion fails. Making the filed a public makes it compile properly. Should I file a bug or is by design?
It's definitely a bug!
|
Copyright © 1999-2021 by the D Language Foundation