blob: ac9aee4cb2f4f20fb597285bf7ae2a02830b31b8 [file] [log] [blame]
// RUN: clang-cc -emit-llvm-only -g
template<typename T> struct Identity {
typedef T Type;
};
void f(Identity<int>::Type a) {}
void f(Identity<int> a) {}
void f(int& a) { }