The following won't compile:
#include <memory>
class A;
bool f() {
    std::shared_ptr<A> a;
    return a;
}
int main()
{
    f();
    return 0;
}
and fails with:
Compilation failed due to following error(s).main.cpp: In function ‘bool f()’:
main.cpp:13:12: error: cannot convert ‘std::shared_ptr’ to ‘bool’ in return
     return a;
What could be the reasoning of the standard (I presume) not allowing an implicit conversion here?
 
     
    