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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic165.C
blob
862931f66196b43f0c591411a61caf23970a890c
1
// PR c++/64514
2
// { dg-do compile { target c++11 } }
3
4
template<typename... T>
5
struct Functor
6
{
7
template <T...>
8
struct Inner
9
{};
10
};
11
12
template struct Functor<>::Inner<>;
13
14
int main()
15
{
16
17
}