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

13 lines
252 B
Solidity

contract C {
struct S { bool f; }
S s;
function f() internal pure returns (S storage) {
revert();
}
function g(bool flag) internal view returns (S storage c) {
if (flag) c = s;
else revert();
}
}
// ----