debug-info.cpp revision 5b6117a7727565be9fcaf709706c7d720bf191ad
1// RUN: clang-cc -emit-llvm-only -g
2template<typename T> struct Identity {
3  typedef T Type;
4};
5
6void f(Identity<int>::Type a) {}
7void f(Identity<int> a) {}
8void f(int& a) { }
9
10template<typename T> struct A {
11  A<T> *next;
12};
13void f(A<int>) { }
14