summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaTemplate/dependent-base-classes.cpp
blob: 56979209ea1e9b95ff74c66c5e745494232d1992 (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -fsyntax-only -verify %s

template<typename T, typename U>
struct X0 : T::template apply<U> { 
  X0(U u) : T::template apply<U>(u) { }
};
OpenPOWER on IntegriCloud