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
/
void10.C
blob
4904a281a400bb22ad198f0cbdddaead97f1addf
1
//PR c++/28736
2
3
template<void> struct A // { dg-error "not a valid type" }
4
{
5
template<typename> friend struct B;
6
};
7
8
template<typename> struct B {};
9
10
B<int> b;