mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 10:36:08 +00:00
7 lines
130 B
C++
7 lines
130 B
C++
![]() |
// RUN: clang-cc -emit-llvm-only -g
|
||
|
template<typename T> struct Identity {
|
||
|
typedef T Type;
|
||
|
};
|
||
|
|
||
|
void f(Identity<int>::Type a) {}
|