pragma experimental SMTChecker;contract C
{functionf()public view{require(msg.sender!=address(0));address a = msg.sender;address b = msg.sender;assert(a == b);}}// ----// Warning: (98-108): Type conversion is not yet fully supported and might yield false positives.