14 lines
245 B
C++
14 lines
245 B
C++
// 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) { }
|
|
|
|
template<typename T> struct A {
|
|
A<T> *next;
|
|
};
|
|
void f(A<int>) { }
|