summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic90.C
blob: 587a0e89e27189965350459266d7689c06821827 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }

template<template<typename...> class TT>
struct X { };

template<typename T, typename U> struct pair { };

X<pair> x;