aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr32114.C
blob: 0ae684ce93828e5741c5d35e3e5ccfc66f83c325 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }
template<typename ...T> struct A
{
  typedef typename T::X Y; // { dg-error "not expanded|T" }
};

A<int> a;