mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:20:24 +08:00
re PR c++/58328 ([C++11] bogus: error: constructor required before non-static data member for)
2014-09-19 Paolo Carlini <paolo.carlini@oracle.com> PR c++/58328 * g++.dg/cpp0x/nsdmi10.C: New. From-SVN: r215386
This commit is contained in:
parent
b4e9251d1e
commit
c9aa0007f8
@ -1,3 +1,8 @@
|
||||
2014-09-19 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/58328
|
||||
* g++.dg/cpp0x/nsdmi10.C: New.
|
||||
|
||||
2014-09-19 James Greenhalgh <james.greenhalgh@arm.com>
|
||||
|
||||
* gcc.dg/ssp-3.c: New.
|
||||
|
18
gcc/testsuite/g++.dg/cpp0x/nsdmi10.C
Normal file
18
gcc/testsuite/g++.dg/cpp0x/nsdmi10.C
Normal file
@ -0,0 +1,18 @@
|
||||
// PR c++/58328
|
||||
// { dg-do compile { target c++11 } }
|
||||
|
||||
struct A1 {
|
||||
struct B1 {
|
||||
int y1 = 1;
|
||||
};
|
||||
|
||||
A1(const B1& opts = B1()) {} // { dg-error "constructor" }
|
||||
};
|
||||
|
||||
struct A2 {
|
||||
struct B2 {
|
||||
int x2, y2 = 1;
|
||||
};
|
||||
|
||||
A2(const B2& opts = B2()) {} // { dg-error "constructor" }
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user