mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
338 B
Solidity
14 lines
338 B
Solidity
contract C {
|
|
struct S { bool f; }
|
|
S s;
|
|
function f() internal view {
|
|
S storage c;
|
|
while(false) {
|
|
c = s;
|
|
}
|
|
c;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3464: (161-162): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|