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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-34753.C
blob
496acaefa011baca2af9959e0680579ee197ce10
1
// { dg-do compile { target c++11 } }
2
template<typename... T> struct A
3
{
4
template<T> struct B {}; // { dg-error "not expanded|T" }
5
};
6
7
A<int>::B<0> b;
8
9
template<typename... T> struct B
10
{
11
template<T> B(); // { dg-error "not expanded|T" }
12
};
13
14
B<int> c;