mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
255 B
C++
15 lines
255 B
C++
// This is a small C++ addition to the compatible_c test.
|
|
// Note: files `a1.cpp` and `a2.cpp` are completely identical.
|
|
|
|
struct Empty { };
|
|
|
|
struct NonEmpty {
|
|
int x;
|
|
};
|
|
|
|
struct Bar {
|
|
struct Empty *empty;
|
|
struct NonEmpty *nonempty;
|
|
int i;
|
|
};
|