xxxxxxxxxx
struct Struct()
{
void method()
static assert(false);
}
static Struct!() foo()()
return Struct!().init;
enum b = is(typeof(foo().method()));
void main() { foo().method(); }