http://forum.dlang.org/thread/mailman.2763.1355745364.5162.digitalmars-d@puremagic.com I am trying to get the user defined attributes for all the fields of a class. I am getting the following error: Error: first argument is not a symbol tuple(false) // test code template Tuple(T...) { alias T Tuple; } enum Bar; class Foo { @Bar int a; } void main() { Foo foo = new Foo; alias Tuple!(__traits(getAttributes, foo.tupleof[0])) tp; pragma(msg, tp); }
https://github.com/D-Programming-Language/dmd/pull/1505
Awesome.
Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/12a54af800ca57456066825ef7a41c5151efbae9 fix Issue 9178 - UDA: getAttributes does not play well with tupleof https://github.com/D-Programming-Language/dmd/commit/9b734c5d9ff4440e6479a2b10c866e5f1d837fab Merge pull request #1505 from 9rnsr/refactor_tiargs Refactor semanticTiargs() and fix Issue 9178 - UDA: getAttributes does not play well with tupleof