solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/319_invalid_array_declaration_with_signed_fixed_type.sol
2020-04-14 10:59:28 +02:00

9 lines
284 B
Solidity

contract test {
function f() public {
uint[fixed(3.5)] a; a;
}
}
// ----
// TypeError: (55-65): Invalid array length, expected integer literal or constant expression.
// TypeError: (50-68): Data location must be "storage" or "memory" for variable, but none was given.