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

6 lines
136 B
Solidity
Raw Normal View History

abstract contract C {
function f() internal returns(uint[] storage);
function g() internal returns(uint[] storage s);
}
2019-10-23 20:10:12 +00:00
// ----