solidity/test/libsolidity/smtCheckerTests/types/array_literal_1.sol
2019-07-01 16:25:33 +02:00

12 lines
251 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.