#include "t00048.h" #pragma once namespace clanguml { namespace t00048 { struct B : public Base { int b; void foo() override; }; template struct BTemplate : public BaseTemplate { T b; void foo() override { } }; } }