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

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;
};