blob: 97c5ce96f602462d328c217068db134187bd035b [file] [log] [blame]
// RUN: clang-cc -fsyntax-only %s
template<typename T> struct A { };
template<typename T> T make(A<T>);
void test_make() {
int& ir0 = make<int&>(A<int&>());
A<int> a0 = make< A<int> >(A<A<int> >());
}