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

9 lines
93 B
C++

struct Thing;
class Foo {
public:
void bar(Thing *thing);
};
void baz(Thing *thing);