comparison gcc/testsuite/g++.dg/cpp0x/aggr3.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // PR c++/92869
2 // { dg-do compile { target c++11 } }
3
4 struct A {
5 A () = default;
6 A (const A &) = default;
7 A (A &&) = default;
8 int arr[3];
9 };
10
11 template <typename T, int N>
12 struct B {
13 B () = default;
14 B (const B &) = default;
15 B (B &&) = default;
16 T arr[N];
17 };
18
19 A a = { { 1, 2, 3 } }; // { dg-error "could not convert" "" { target c++2a } }
20 B<int, 3> b = { { 1, 2, 3 } }; // { dg-error "could not convert" "" { target c++2a } }