In the following code we are returning a const object and collecting it in a non const object, and still it compiles without an error or a warning..
class foo
{
int i;
public:
const foo& call() const
{
return *this;
}
};
int main()
{
foo aa, bb;
bb = aa.call();
}