Determines whether T or any of its representation types have a context pointer.
static struct S { } int i; struct NS { void f() { ++i; } } static assert(!hasNested!(S[2])); static assert(hasNested!(NS[2]));
See Implementation
Determines whether T or any of its representation types have a context pointer.