mirror of git://gcc.gnu.org/git/gcc.git
re PR c++/60842 (In-class initializer causes a strange error)
2015-07-10 Paolo Carlini <paolo.carlini@oracle.com> PR c++/60842 * g++.dg/cpp0x/nsdmi-template15.C: New. From-SVN: r225679
This commit is contained in:
parent
2f40fae2d9
commit
f3ae5c0cea
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-07-10 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
PR c++/60842
|
||||||
|
* g++.dg/cpp0x/nsdmi-template15.C: New.
|
||||||
|
|
||||||
2015-07-10 Jiong Wang <jiong.wang@arm.com>
|
2015-07-10 Jiong Wang <jiong.wang@arm.com>
|
||||||
|
|
||||||
* gcc.target/aarch64/got_mem_hoist_1.c: New test.
|
* gcc.target/aarch64/got_mem_hoist_1.c: New test.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
// PR c++/60842
|
||||||
|
// { dg-do compile { target c++11 } }
|
||||||
|
|
||||||
|
namespace N {
|
||||||
|
class I {};
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename, typename>
|
||||||
|
class J {};
|
||||||
|
|
||||||
|
class S {
|
||||||
|
J<int, N::I> j = J<int, N::I>{};
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue