aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/constexpr-init5.C
blob: a9e717d91f94b862f252310c0b630da46bbec690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// PR c++/91353 - P1331R2: Allow trivial default init in constexpr contexts.
// { dg-do compile { target c++20 } }

struct S { int i; };

constexpr void
fn ()
{
  S s;

  []() constexpr {
    int i;
  }();
}

constexpr int
fn2 ()
{
  return __extension__ ({ int n; n; }); // { dg-error "not usable in a constant expression" }
}

constexpr int i = fn2 (); // { dg-message "in .constexpr. expansion of" }