mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
127 B
C++
12 lines
127 B
C++
|
|
class CThisCall {
|
|
struct S {
|
|
bool (CThisCall::*b)();
|
|
};
|
|
const S *s;
|
|
void f() {
|
|
if ((this->*s->b)()) ;
|
|
}
|
|
};
|
|
|