repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-array-tparm.C
blob
02fba95545defea64286ef1168ff7b0b44c87a3f
1
// { dg-do compile { target c++11 } }
2
3
template <const int I[2]> struct A { int ir[I[0]]; };
4
extern constexpr int ar[2] = { 1, 2 };
5
A<ar> a;