solidity/test/libsolidity/smtCheckerTests/typecast/cast_smaller_1.sol
2019-01-16 13:00:54 +01:00

13 lines
264 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint16 x) public pure {
uint8 y = uint8(x);
// True because of y's type
assert(y < 300);
}
}
// ----
// Warning: (94-102): Type conversion is not yet fully supported and might yield false positives.