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

15 lines
293 B
C++
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "UnrealCodeAnalyzerTestsPCH.h"
#include "Inheritance.h"
class FTestDerivedClass : public FTestBaseClass
{ };
static void Function_Inheritance()
{
#ifdef UNREAL_CODE_ANALYZER
FTestDerivedClass TestDerivedClass;
#endif
}