#include <iostream>
#include <typeinfo>
typedef int myint;
int main() {
int i;
myint myi;
if ( typeid(i) == typeid(myi) )
{
std::cout << "typeid(i) == typeid(myi)" << std::endl;
}
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPiAKI2luY2x1ZGUgPHR5cGVpbmZvPgoKdHlwZWRlZiBpbnQgbXlpbnQ7CgppbnQgbWFpbigpIHsKCWludCBpOwoJbXlpbnQgbXlpOwoJIAoJaWYgKCB0eXBlaWQoaSkgPT0gdHlwZWlkKG15aSkgKQoJewoJCXN0ZDo6Y291dCA8PCAidHlwZWlkKGkpID09IHR5cGVpZChteWkpIiA8PCBzdGQ6OmVuZGw7Cgl9CgkgCglyZXR1cm4gMDsKfQ==