solidity/test/libsolidity/smtCheckerTests/typecast/cast_larger_1.sol

13 lines
270 B
Solidity
Raw Normal View History

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