solidity/test/libsolidity/syntaxTests/controlFlow/uninitializedAccess/smoke.sol

11 lines
291 B
Solidity

contract C {
uint[] s;
function f() internal returns (uint[] storage a)
{
a[0] = 0;
a = s;
}
}
// ----
// TypeError 3464: (94-95): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.