aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/paren-init3.C
blob: ebfa8db033a9a6f8f1d57759b50f290b53466c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/91363 - P0960R3: Parenthesized initialization of aggregates.
// { dg-do compile { target c++20 } }

class a {
  int b{};
};
class c {
  c();
  a d;
};
c::c() {}