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

13 lines
448 B
Solidity
Raw Normal View History

2019-02-19 11:16:15 +00:00
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;
2019-02-19 11:16:15 +00:00
}
// ----
// Warning: (92-100): Assertion checker does not yet support the type of this variable.
// Warning: (149-159): Assertion checker does not yet support the type of this variable.
// Warning: (153-156): Assertion checker does not yet implement this operator on non-integer types.