mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
296 B
Solidity
13 lines
296 B
Solidity
pragma experimental SMTChecker;
|
|
|
|
contract C {
|
|
function f(bytes calldata b) external pure {
|
|
require(b[10] == 0xff);
|
|
assert(bytes(b[10:20]).length == 10);
|
|
assert(bytes(b[10:20])[0] == 0xff);
|
|
// Disabled because of Spacer nondeterminism
|
|
//assert(bytes(b[10:20])[5] == 0xff);
|
|
}
|
|
}
|
|
// ----
|