mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
159 B
C++
11 lines
159 B
C++
|
|
typedef int type1;
|
|
using using1 = float;
|
|
|
|
typedef using1 type2;
|
|
using using2 = type1;
|
|
|
|
template<typename T> struct S { using X = T*; };
|
|
|
|
using Y = S<int>::X;
|