#include <iostream>
struct A {
	int x;
	
};
void foo(A a) {
	std::cout << a.x << std::endl;
}
int main() {
	A a;
	foo(a);
	foo(A());
}
