mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
13 lines
113 B
C++
13 lines
113 B
C++
|
|
template<typename T>
|
|
struct A
|
|
{
|
|
typedef T Result;
|
|
};
|
|
|
|
void someFunc()
|
|
{
|
|
A<A<int>> object;
|
|
(void)object;
|
|
}
|