struct A {
	const int j;
	virtual void foo() {}
};
 
int main() {
	//A a{};
	A * aa = new A();
	return 0;
}