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

18 lines
513 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() public pure {
bytes2 a = 0x1234;
bytes4 b = bytes4(a); // b will be 0x12340000
// False positive since right padding is not supported yet.
assert(b == 0x12340000);
// This should fail (right padding).
assert(a == b);
}
}
// ----
// Warning: (108-117): Type conversion is not yet fully supported and might yield false positives.
// Warning: (207-230): Assertion violation happens here
// Warning: (273-287): Assertion violation happens here