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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic89.C
blob
1e59c1af75c302042ad79829adac23596bc5471c
1
// { dg-do compile { target c++11 } }
2
// Contributed by Eric Niebler
3
template<typename T, typename U>
4
struct pair
5
{};
6
7
template<typename T>
8
struct test;
9
10
template<template<typename...> class T, typename... Args>
11
struct test<T<Args...> >
12
{};
13
14
test<pair<int, double> > t;