aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/is_std_layout4.C
blob: 09c0098120d2226d88c8ad3109493147b66ada57 (plain)
1
2
3
4
5
6
7
8
9
10
11
// DR 1813
// PR c++/83374 - __is_standard_layout wrong for a class with repeated bases.
// { dg-do compile { target c++11 } }

struct R { };
struct Q { };
struct S : R { };
struct T : Q { };
struct U : S, T { };
// No repeated base class subobjects.
static_assert(__is_standard_layout(U), "");