blob: ab03aa71b4c073458cb26ffbb64cd6bc4bc65b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#include "EASTLTest.h"
#include <EASTL/type_traits.h>
using namespace eastl;
#if defined(__cplusplus_winrt)
ref class Foo
{
};
#endif
int TestCppCXTypeTraits()
{
int nErrorCount = 0;
// We can only build this code if C++/CX is enabled
#if defined(__cplusplus_winrt)
{
Foo^ foo = ref new Foo();
static_assert(eastl::is_pod<Foo^>::value == false, "Ref types are not POD");
static_assert(eastl::is_trivially_destructible<Foo^>::value == false, "Ref types cannot be trivially destructible");
static_assert(eastl::is_trivially_constructible<Foo^>::value == false, "Ref types cannot be trivially constructible");
static_assert(eastl::is_trivially_copy_constructible<Foo^>::value == false, "Ref types cannot be trivially copyable");
static_assert(eastl::is_trivially_copy_assignable<Foo^>::value == false, "Ref types cannot be trivially copyable");
}
#endif
return nErrorCount;
}
|