blob: 56979209ea1e9b95ff74c66c5e745494232d1992 [file] [log] [blame]
// 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) { }
};