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
2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
error31.C
blob
5264f442b311764a77631732ab44928fda0f6b81
1
// PR c++/32190
2
3
template<typename T> class foo{ };
4
5
int main() {
6
foo<int> i;
7
foo<foo<int> j; // { dg-error "template argument" }
8
int k;
9
int l;
10
foo<int> m;
11
return 0;
12
}