comparison gcc/testsuite/g++.dg/cpp2a/paren-init23.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 // PR c++/93790 - wrong paren-init of aggregates interference.
2 // { dg-do compile { target c++20 } }
3
4 struct S {
5 int i;
6 };
7 const S& s(1);
8
9 struct A {
10 int i;
11 A(int);
12 };
13 const A& a(1);
14
15 struct B {
16 int i;
17 B(int) = delete;
18 };
19 const B& b(1); // { dg-error "use of deleted function" }