mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-17 09:20:27 +08:00
re PR c++/56633 (Overload selection error for non-static data member initialization with initializer list in template class)
2014-06-26 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56633 * g++.dg/cpp0x/deleted8.C: New. From-SVN: r212037
This commit is contained in:
parent
680a5a7c02
commit
27dacd87b5
@ -1,3 +1,8 @@
|
||||
2014-06-26 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/56633
|
||||
* g++.dg/cpp0x/deleted8.C: New.
|
||||
|
||||
2014-06-26 Martin Jambor <mjambor@suse.cz>
|
||||
|
||||
* g++.dg/simulate-thread/bitfields-2.C: Remove allow-load-data-races
|
||||
|
22
gcc/testsuite/g++.dg/cpp0x/deleted8.C
Normal file
22
gcc/testsuite/g++.dg/cpp0x/deleted8.C
Normal file
@ -0,0 +1,22 @@
|
||||
// PR c++/56633
|
||||
// { dg-do compile { target c++11 } }
|
||||
|
||||
struct A {
|
||||
A(int) { }
|
||||
A(const A&) = delete;
|
||||
};
|
||||
|
||||
struct Test1 {
|
||||
A value2{0}; // no problem here
|
||||
};
|
||||
|
||||
template <typename T> // T is not used
|
||||
struct Test2 {
|
||||
A value2{0}; // fails to compile
|
||||
};
|
||||
|
||||
int main() {
|
||||
Test1 test;
|
||||
Test2<int> test2;
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user