repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
rv-targ1.C
blob
06516dfa2b9c211c14d948595de203d7f20bb752
1
// PR c++/84720
2
// { dg-do compile { target c++11 } }
3
4
template<int &&> // { dg-error "not a valid type" }
5
struct a {
6
template<typename...>
7
static void b() {
8
b();
9
}
10
};