solidity/test/libsolidity/syntaxTests/controlFlow/storageReturn/assembly_err.sol

11 lines
348 B
Solidity
Raw Normal View History

contract C {
struct S { bool f; }
S s;
function f() internal pure returns (S storage) {
assembly {
}
}
}
// ----
// TypeError: (87-88): This variable is of storage pointer type and might be returned without assignment and could be used uninitialized. Assign the variable (potentially from itself) to fix this error.