solidity/test/libsolidity/smtCheckerTests/operators/fixed_point_compound_add.sol
2020-08-14 12:58:27 +02:00

7 lines
107 B
Solidity

pragma experimental SMTChecker;
contract C {
fixed[] b;
function f() internal { b[0] += 1; }
}
// ----