Files
codeql/cpp/ql/test/library-tests/functions/qualifiers/a.cpp
2018-08-02 17:53:23 +01:00

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);
};