#include <iostream>
using namespace std;

class Test {
    int *ptr = NULL;
};

int main() {
	Test t;
	return 0;
}