mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
265 B
Solidity
9 lines
265 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
contract C {
|
||
|
fixed[] b;
|
||
|
function f() internal { b[0] += 1; }
|
||
|
}
|
||
|
// ----
|
||
|
// Warning: (84-93): Underflow (resulting value less than 0) happens here
|
||
|
// Warning: (84-93): Overflow (resulting value larger than 2**256 - 1) happens here
|