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
/
variadic-empty1.C
blob
42daeaa3dcb1aa9eaf4571d96960136d786f3213
1
// PR c++/85093
2
// { dg-do compile { target c++11 } }
3
4
template<class V> class A {};
5
6
template<class V, class... G> class B {
7
typedef A<V,G...> AB; // { dg-error "arguments" }
8
AB ab;
9
};
10
11
int main() {
12
B<int,double> b;
13
}