xxxxxxxxxx
auto myAwesomeMethod()
{
return 1;
}
auto myAwesomeMethod2()
{
return new int(1);
}
void main(string[] args)
{
import std.traits;
static assert(hasFunctionAttributes!(myAwesomeMethod, "@nogc"));
static assert(!hasFunctionAttributes!(myAwesomeMethod2, "@nogc"));
}