7 lines
130 B
C++
Raw Normal View History

// RUN: clang-cc -emit-llvm-only -g
template<typename T> struct Identity {
typedef T Type;
};
void f(Identity<int>::Type a) {}