mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 08:40:33 +08:00
re PR c++/63241 (Internal error in gimplify_init_constructor when using constexr and multidimensional arrays)
2014-09-17 Paolo Carlini <paolo.carlini@oracle.com> PR c++/63241 * g++.dg/cpp0x/constexpr-63241.C: New. From-SVN: r215326
This commit is contained in:
parent
776c9a0da1
commit
366d28eedf
@ -1,3 +1,8 @@
|
||||
2014-09-17 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/63241
|
||||
* g++.dg/cpp0x/constexpr-63241.C: New.
|
||||
|
||||
2014-09-17 Janne Blomqvist <jb@gcc.gnu.org>
|
||||
|
||||
PR libfortran/62768
|
||||
|
13
gcc/testsuite/g++.dg/cpp0x/constexpr-63241.C
Normal file
13
gcc/testsuite/g++.dg/cpp0x/constexpr-63241.C
Normal file
@ -0,0 +1,13 @@
|
||||
// PR c++/63241
|
||||
// { dg-do compile { target c++11 } }
|
||||
|
||||
struct A {
|
||||
constexpr A(int){}
|
||||
};
|
||||
|
||||
int main() {
|
||||
int i = 1;
|
||||
A array[2][2] =
|
||||
{{{0}, {i}},
|
||||
{{0}, {0}}};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user