struct S
{
	int f(){ return 1; }
}
int main()
{
	S* s;
	s.f();
	return 0;
}