Bug 9178 – UDA: getAttributes does not play well with tupleof
Status
RESOLVED
Resolution
FIXED
Severity
blocker
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2012-12-18T09:18:00Z
Last change time
2013-01-19T11:05:07Z
Keywords
pull, rejects-valid
Assigned to
nobody
Creator
puneet
Comments
Comment #0 by puneet — 2012-12-18T09:18:57Z
http://forum.dlang.org/thread/[email protected]
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);
}