mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
333 B
Solidity
12 lines
333 B
Solidity
contract C {
|
|
uint256[] s;
|
|
function f() public {
|
|
bool d;
|
|
uint256[] storage x;
|
|
uint256[] storage y = d ? (x = s) : x;
|
|
y;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3464: (145-146): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|