mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
665 B
Solidity
23 lines
665 B
Solidity
contract C {
|
|
struct S { bool f; }
|
|
S s;
|
|
function f(bool flag) internal {
|
|
S storage c;
|
|
if (flag) c = s;
|
|
c;
|
|
}
|
|
function g(bool flag) internal {
|
|
S storage c;
|
|
if (flag) c = s;
|
|
else
|
|
{
|
|
if (!flag) c = s;
|
|
else s.f = true;
|
|
}
|
|
c;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3464: (138-139): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|
|
// TypeError 3464: (330-331): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|