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

7 lines
193 B
Solidity
Raw Normal View History

contract C {
function f() internal returns(uint[] storage);
function g() internal returns(uint[] storage s);
}
2019-10-23 20:10:12 +00:00
// ----
// TypeError: (0-118): Contract "C" should be marked as abstract.