class C;
struct X {
X(const C &){
return X();
}
};
struct C {
operator int(){
return 0;
}
}
int foo(){
return *this;
}
C &bar(){
return *this;
}
X baz(){
return *this;
}
};
struct X {
X(const C &){
return X();
}
};
struct C {
operator int(){
return 0;
}
}
int foo(){
return *this;
}
C &bar(){
return *this;
}
X baz(){
return *this;
}
};
