Another test case for PR6062

llvm-svn: 93872
This commit is contained in:
Douglas Gregor 2010-01-19 06:47:24 +00:00
parent a3b624aa55
commit e9f3ac7b1b
1 changed files with 5 additions and 0 deletions

View File

@ -52,3 +52,8 @@ namespace PR6062 {
A(U& init) : U::other_type(init) { }
};
}
template<typename T, typename U>
struct X0 : T::template apply<U> {
X0(int i) : T::template apply<U>(i) { }
};