mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
234 B
Solidity
11 lines
234 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract C {
|
||
|
function f(bytes calldata x, uint y) external pure {
|
||
|
x[8][0];
|
||
|
x[8][5*y];
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 4984: (118-121): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|