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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
array2.C
blob
edab15bbec2d59c97e0cff96633acfae0ff818ae
1
// { dg-do assemble }
2
3
template<int N, class C>
4
class Bar {};
5
6
template<class C>
7
class Huh {};
8
9
template<int N>
10
void foo(const Bar<N,Huh<float[1]> > &x) {}
11
12
int main() {
13
foo(Bar<3,Huh<float[1]> >());
14
}