mirror of
https://github.com/github/codeql.git
synced 2026-04-21 06:55:31 +02: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; }
|
|
};
|
|
|