solidity/test/libsolidity/smtCheckerTests/types/array_literal_1.sol
2019-05-02 12:05:21 +02:00

13 lines
326 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() public pure {
uint[3] memory array = [uint(1), 2, 3];
}
}
// ----
// Warning: (76-96): Unused local variable.
// Warning: (99-114): Assertion checker does not yet implement inline arrays.
// Warning: (99-114): Internal error: Expression undefined for SMT solver.