blob: 987c439eb37c21af4824b3d8b39eba274d9233fa [file] [log] [blame]
class C {
int m(){
return 6 + 6;
}
void f(C a){
m();
}
}