mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
19 lines
274 B
C++
19 lines
274 B
C++
template <typename T, typename U> struct pair {
|
|
T first;
|
|
U second;
|
|
};
|
|
|
|
struct coords {
|
|
int x;
|
|
template <typename T> using a_wild_alias_template_appeared = pair<T, int>;
|
|
int y;
|
|
int z;
|
|
enum {
|
|
after_alias_template = 1
|
|
};
|
|
};
|
|
|
|
enum {
|
|
global_constant = 0
|
|
};
|