#include <new>

int main() {
	int *a=new int; new (a) int;
	return 0;
}