mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
291 B
Solidity
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.
|