mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
243 B
C
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.
|
|
*/
|
|
};
|