blob: ae9d3110aba67c5dc0bdd5fb8dc66e6659decba6 [file] [log] [blame]
#include <stddef.h>
template <bool> struct StaticAssert;
template <> struct StaticAssert<true> {};
struct MyPOD
{
int a; int b; int c;
};
StaticAssert<(offsetof(MyPOD, a) == 0)> s;