comparison gcc/testsuite/g++.dg/ext/is_literal_type3.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // { dg-do compile { target c++11 } }
2
3 struct S {
4 constexpr S () : n{} { }
5 ~S () { n = 1; }
6 int n;
7 };
8
9 static_assert(!__is_literal_type(S), "");
10
11 #ifdef __cpp_constexpr_dynamic_alloc
12 struct T {
13 constexpr T () : n{} { }
14 constexpr ~T () { n = 1; }
15 int n;
16 };
17
18 static_assert(__is_literal_type(T), "");
19
20 struct U : public T {
21 constexpr U () : u{} { }
22 int u;
23 };
24
25 static_assert(__is_literal_type(U), "");
26 #endif