#include <iostream>

struct A {
	void test() const {
		std::cout << "lel" << std::endl;
	}
};

int main() {
	A * a = nullptr;
	a->test();
	return 0;
}