2020-12-10 13:06:34 +00:00
|
|
|
contract C {
|
|
|
|
function abiencodePackedSlice(bytes calldata data) external pure {
|
|
|
|
bytes memory b1 = abi.encodePacked(data);
|
|
|
|
bytes memory b2 = abi.encodePacked(data[0:]);
|
|
|
|
// should hold but the engine cannot infer that data is fully equals data[0:] because each index is assigned separately
|
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//assert(b1.length == b2.length); // fails for now
|
|
|
|
|
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//bytes memory b3 = abi.encodePacked(data[:data.length]);
|
|
|
|
// should hold but the engine cannot infer that data is fully equals data[:data.length] because each index is assigned separately
|
|
|
|
//assert(b1.length == b3.length); // fails for now
|
|
|
|
|
|
|
|
bytes memory b4 = abi.encodePacked(data[5:10]);
|
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//assert(b1.length == b4.length); // should fail
|
|
|
|
|
|
|
|
uint x = 5;
|
|
|
|
uint y = 10;
|
|
|
|
bytes memory b5 = abi.encodePacked(data[x:y]);
|
|
|
|
// should hold but the engine cannot infer that data[5:10] is fully equals data[x:y] because each index is assigned separately
|
|
|
|
assert(b1.length == b5.length); // fails for now
|
|
|
|
|
|
|
|
bytes memory b6 = abi.encode(data[5:10]);
|
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//assert(b4.length == b6.length); // should fail
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2021-03-31 15:11:54 +00:00
|
|
|
// SMTEngine: all
|
2020-12-10 13:06:34 +00:00
|
|
|
// SMTIgnoreCex: yes
|
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 2072: (127-142): Unused local variable.
|
|
|
|
// Warning 2072: (691-706): Unused local variable.
|
|
|
|
// Warning 2072: (1099-1114): Unused local variable.
|
|
|
|
// Warning 6328: (1047-1077): CHC: Assertion violation happens here.
|