solidity/test/libsolidity/smtCheckerTests/simple/static_array.sol

11 lines
165 B
Solidity
Raw Normal View History

2019-02-19 11:16:15 +00:00
contract C
{
// Used to crash because Literal had no type
int[3] d;
// Used to crash because Literal had no type
int[3*1] x;
2019-02-19 11:16:15 +00:00
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2019-02-19 11:16:15 +00:00
// ----