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

11 lines
243 B
C

struct Base {
Base() {}
~Base() {}
};
struct A : Base {
/* Because of Base() and ~Base(), the extractor generates A() and ~A() here, but it
* only generates them on-demand, and they don't appear in the source sequence list.
*/
};