#include <iostream>

struct Foo {
};

struct Bar {
    int x[0];
};

int main() {
	std::cout << "sizeof(Foo) = " << sizeof(Foo) << std::endl;
	std::cout << "sizeof(Bar) = " << sizeof(Bar) << std::endl;
	return 0;
}