Lines Matching refs:NestedStruct
2370 struct NestedStruct { void f() { ++i; } }
2371 static assert(isNested!NestedStruct);
2417 struct NestedStruct { void f() { ++i; } }
2418 static assert( isNested!NestedStruct);
2419 static assert( hasNested!NestedStruct);
2420 static assert( isNested!(immutable NestedStruct));
2421 static assert( hasNested!(immutable NestedStruct));
2423 static assert(!__traits(compiles, isNested!(NestedStruct[1])));
2424 static assert( hasNested!(NestedStruct[1]));
2425 static assert(!hasNested!(NestedStruct[0]));
2427 struct S1 { NestedStruct nested; }
2431 static struct S2 { NestedStruct nested; }
2435 static struct S3 { NestedStruct[0] nested; }
2439 static union U { NestedStruct nested; }