repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
array16.C
blob
c51441041b45e81c4b23cf9d4f86b7ad0f2d7603
1
// PR c++/28886
2
3
template<typename> struct A;
4
5
template<typename T, int N> struct A<T[N]> {};
6
7
template<typename T, int N> struct A<const T[N]> {};
8
9
A<const int[1]> a;