mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
152 B
C++
9 lines
152 B
C++
|
|
// This example highlighted a bug in extracting routine type qualifiers.
|
|
|
|
template <typename A, typename B>
|
|
struct S {
|
|
void f(A (B::*)() const);
|
|
};
|
|
|