aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/controlFlow/storageReturn/unimplemented_library.sol
blob: 818b6a20597bf6feac1068e5c0697a2100e9998f (plain) (blame)
1
2
3
4
library L {
    function f() public returns(uint[] storage);
    function g() public returns(uint[] storage s);
}