blob: 2a141857cfe657228d318909fe9a4719059537cd [file] [log] [blame]
Anders Carlssonba397fe2009-11-06 18:45:16 +00001// RUN: clang-cc -emit-llvm-only -g
2template<typename T> struct Identity {
3 typedef T Type;
4};
5
6void f(Identity<int>::Type a) {}