Files
UnrealEngineUWP/Engine/Source/Developer/UnrealCodeAnalyzerTests/Private/Inheritance.cpp

13 lines
231 B
C++
Raw Normal View History

#include "UnrealCodeAnalyzerTestsPCH.h"
#include "Inheritance.h"
class FTestDerivedClass : public FTestBaseClass
{ };
static void Function_Inheritance()
{
#ifdef UNREAL_CODE_ANALYZER
FTestDerivedClass TestDerivedClass;
#endif
}