solidity/test/libsolidity/smtCheckerTests/simple/static_array.sol
2019-03-11 12:53:49 +01:00

10 lines
171 B
Solidity

pragma experimental SMTChecker;
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;
}
// ----