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
/
array18.C
blob
b2b1e3502e1872a8d579ccd780d6c9c819893847
1
// PR c++/30924
2
3
template<typename T>
4
struct x {};
5
6
template<typename T, unsigned N>
7
struct x<T*[N]> {};
8
9
int main() {
10
x<int> a;
11
x<int*[10]> b;
12
return 0;
13
}