Why do Visual Studio 2010 and Visual Studio 2012 fail to compile this code?
Codepad.org, Xcode, gcc, LLVM, Clang all have no problem but Visual Studio poops the bed:
struct S {
template <class T> inline operator T () const { return T (); }
};
int main () {
// NOTE: "S()" denotes construction in these examples
struct F {
void operator() (bool) { }
static void toint (int) { }
static void tostr (char const*) { }
};
bool b1 = S (); // Okay
bool b2 (S ()); // Okay
F () (S ()); // Okay
F::toint (S ());// Okay
F::tostr (S ());// Okay
S () || false; // Error: error C2676: binary '||' : 'vf::S' does
// not define this operator or a conversion to a type
// acceptable to the predefined operator
return 0;
}
Adding the explicit keyword doesn't change a thing for gcc or clang. The error message produced is:
error C2676: binary '||' : 'S' does not define this operator or a
conversion to a type acceptable to the predefined operator