blob: 6e82cddc516685169625ff1eada76c7ea3dc0bbe [file] [log] [blame]
Howard Hinnantc52f43e2010-08-22 00:59:46 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc52f43e2010-08-22 00:59:46 +00007//
8//===----------------------------------------------------------------------===//
9
10// type_traits
11
12// is_polymorphic
13
14#include <type_traits>
15
16template <class T>
17void test_is_polymorphic()
18{
19 static_assert( std::is_polymorphic<T>::value, "");
20 static_assert( std::is_polymorphic<const T>::value, "");
21 static_assert( std::is_polymorphic<volatile T>::value, "");
22 static_assert( std::is_polymorphic<const volatile T>::value, "");
23}
24
25template <class T>
26void test_is_not_polymorphic()
27{
28 static_assert(!std::is_polymorphic<T>::value, "");
29 static_assert(!std::is_polymorphic<const T>::value, "");
30 static_assert(!std::is_polymorphic<volatile T>::value, "");
31 static_assert(!std::is_polymorphic<const volatile T>::value, "");
32}
33
34class Empty
35{
36};
37
38class NotEmpty
39{
40 virtual ~NotEmpty();
41};
42
43union Union {};
44
45struct bit_zero
46{
47 int : 0;
48};
49
50class Abstract
51{
52 virtual ~Abstract() = 0;
53};
54
Marshall Clow933afa92013-07-04 00:10:01 +000055#if __has_feature(cxx_attributes)
Howard Hinnant11a50ac2013-04-02 21:25:06 +000056class Final final {
57};
Marshall Clow933afa92013-07-04 00:10:01 +000058#else
59class Final {
60};
61#endif
Howard Hinnant11a50ac2013-04-02 21:25:06 +000062
Howard Hinnantc52f43e2010-08-22 00:59:46 +000063int main()
64{
65 test_is_not_polymorphic<void>();
66 test_is_not_polymorphic<int&>();
67 test_is_not_polymorphic<int>();
68 test_is_not_polymorphic<double>();
69 test_is_not_polymorphic<int*>();
70 test_is_not_polymorphic<const int*>();
71 test_is_not_polymorphic<char[3]>();
Marshall Clowe33e03e2014-09-02 16:19:38 +000072 test_is_not_polymorphic<char[]>();
Howard Hinnantc52f43e2010-08-22 00:59:46 +000073 test_is_not_polymorphic<Union>();
74 test_is_not_polymorphic<Empty>();
75 test_is_not_polymorphic<bit_zero>();
Howard Hinnant11a50ac2013-04-02 21:25:06 +000076 test_is_not_polymorphic<Final>();
77 test_is_not_polymorphic<NotEmpty&>();
78 test_is_not_polymorphic<Abstract&>();
Howard Hinnantc52f43e2010-08-22 00:59:46 +000079
80 test_is_polymorphic<NotEmpty>();
81 test_is_polymorphic<Abstract>();
82}