solidity/test/libsolidity/syntaxTests/array/uninitialized_storage_var.sol

12 lines
403 B
Solidity
Raw Normal View History

2018-07-03 13:10:39 +00:00
contract C {
2018-07-11 13:57:34 +00:00
function f() public {
2018-07-03 13:10:39 +00:00
uint[] storage x;
uint[10] storage y;
x;
y;
2018-07-03 13:10:39 +00:00
}
}
// ----
// TypeError: (80-81): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
// TypeError: (85-86): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.