class C {
    int m(){
        return 6 + 6;
    }
    void f(C a){
       m();
    }
}
