llvm-project/clang/test/CodeGenCXX/debug-info.cpp

9 lines
176 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) {}
void f(Identity<int> a) {}
void f(int& a) { }