xxxxxxxxxx
unittest
{
import std.traits;
struct UDA {}
static struct Foo
{
static bool b;
void brickWall(){}
static bool c;
}
static assert(getSymbolsByUDA!(Foo, UDA).stringof == "tuple(b, c)");
}