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

12 lines
171 B
C++

enum Cheese { cheddar, brie, camembert, gouda };
// This struct is POD in C++03, but not in C++11.
struct Foo
{
int a = 0;
int b = 0;
Cheese cheese = cheddar;
};