solidity/test/libsolidity/smtCheckerTests/simple/static_array.sol
2021-04-08 21:03:39 +02:00

11 lines
165 B
Solidity

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;
}
// ====
// SMTEngine: all
// ----