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

11 lines
354 B
Solidity

contract C {
struct S { bool f; }
S s;
function f() internal pure returns (S storage) {
assembly {
}
}
}
// ----
// Warning: (87-88): This variable is of storage pointer type and might be returned without assignment. This can cause storage corruption. Assign the variable (potentially from itself) to remove this warning.