function isNotZero(uint256 x) public pure returns (bool) {
if (x) { // will not compile
return true;
}
else {
return false;
}
}
function isNotZero(uint256 x) public pure returns (bool) {
if (x) { // will not compile
return true;
}
else {
return false;
}
}