Commit 27dacd87 by Paolo Carlini Committed by Paolo Carlini

re PR c++/56633 (Overload selection error for non-static data member…

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
parent 680a5a7c
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> 2014-06-26 Martin Jambor <mjambor@suse.cz>
* g++.dg/simulate-thread/bitfields-2.C: Remove allow-load-data-races * g++.dg/simulate-thread/bitfields-2.C: Remove allow-load-data-races
......
// 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment