2020-09-24 17:24:33 +00:00
|
|
|
contract C {
|
|
|
|
function f(bytes calldata b) external pure {
|
2021-03-23 18:15:14 +00:00
|
|
|
require(b.length > 20);
|
2020-09-24 17:24:33 +00:00
|
|
|
require(b[0] == 0xff);
|
|
|
|
assert(bytes(b[:20]).length == 20);
|
|
|
|
assert(bytes(b[:20])[0] == 0xff);
|
|
|
|
assert(bytes(b[:20])[5] == 0xff);
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2020-09-24 17:24:33 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 6328: (150-182): CHC: Assertion violation might happen here.
|
|
|
|
// Warning 6328: (186-218): CHC: Assertion violation happens here.
|
|
|
|
// Warning 4661: (150-182): BMC: Assertion violation happens here.
|