ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git] / gcc / testsuite / g++.dg / template / ttp33.C
blobcd0de8ca64126afda4af9ef124e7368130cd68fc
1 // A slight variation of ttp31.C.
2 // { dg-do compile { target c++11 } }
4 template<class TA,
5          template<typename TA::type...> class TTA, TA... VA>
6 struct A { };
8 template<class UC, class TC,
9          template<typename TC::type...> class TTC, TC... VC>
10 struct C : A<TC, TTC, VC...> { };