I formed a nice interview question by chance. :)
template<typename T>
bool foo (T obj)
{
if(typeid(T) == typeid(obj))
return false;
return true; // <-- execute this
}
You have to call (only above mentioned) foo() in such a way that it returns true. Conditions are,
- Cannot edit or overload
foo()ortypeid - No platform specific hacks allowed
- No
#defineallowed