mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
19 lines
217 B
C++
19 lines
217 B
C++
|
|
template <typename T>
|
|
class C {
|
|
void fun(T) { return; }
|
|
};
|
|
|
|
template <typename T>
|
|
class D {
|
|
public:
|
|
void fun(T) { return; }
|
|
};
|
|
|
|
template <typename T>
|
|
class E {
|
|
public:
|
|
void fun(T) { return; }
|
|
};
|
|
|