solidity/test/libsolidity/smtCheckerTests/types/fixed_bytes_access_1.sol
2020-07-28 17:59:42 +02:00

10 lines
245 B
Solidity

pragma experimental SMTChecker;
contract c {
bytes10[6] data2;
function test() public view returns (bytes10 r2) {
r2 = data2[4][5];
}
}
// ----
// Warning 7989: (123-134): Assertion checker does not yet support index accessing fixed bytes.