solidity/test/libsolidity/syntaxTests/controlFlow/localStorageVariables/while_declaration_err.sol
2022-04-01 23:41:18 -05:00

14 lines
342 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='c'): This variable is of storage pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.