struct x
{
    void bar()
    {
        foo();
    }
    void foo(){}
};

int main(){x().bar();}