#pragma once #include "concepts/concepts.h" namespace clanguml { namespace t00065 { struct B { B() = default; void b() { } }; template struct C { T *t; }; template struct D { T t; C c; }; } }