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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic-ttp9.C
blob
63e3f2684aae8494a2c3996ef5834090d4e4a314
1
// PR c++/86986
2
// { dg-do compile { target c++11 } }
3
4
template<class... T>
5
struct X {
6
template<template<T...> class...>
7
struct Y { };
8
};
9
10
using type = X<int>::Y<>;