solidity/test/libsolidity/smtCheckerTests/operators/fixed_point_compound_add.sol

7 lines
107 B
Solidity
Raw Normal View History

2020-05-29 16:13:03 +00:00
pragma experimental SMTChecker;
contract C {
fixed[] b;
function f() internal { b[0] += 1; }
}
// ----