aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/stmtexpr21.C
blob: 97052a117a70674dc2c2d3d76675e8e34f3b203d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/83921
// { dg-options "" }
// { dg-do compile { target c++11 } }

struct test { const int *addr; };

const test* setup()
{
  static constexpr test atest =
    { ({ int inner; (const int*)(0); }) };  // { dg-error "uninitialized" "" { target c++17_down } }

  return &atest;
}