summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-union2.C
blob: c22ecc99efba83c6432d9bfc0a53db3ac4dbd772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/51675
// { dg-do compile { target c++11 } }

union foo
{
  int x = 0;
  short y;

  constexpr foo() = default;
};

union bar
{
  int x;
  short y;

  constexpr bar() = default;	// { dg-error "constexpr" "" { target c++17_down } }
};