Ignore unimplemented functions for storage returns.

This commit is contained in:
Daniel Kirchner
2018-11-13 12:18:22 +01:00
parent 4eaed37b96
commit b5e9d849ef
4 changed files with 14 additions and 2 deletions
@@ -0,0 +1,4 @@
contract C {
function f() internal returns(uint[] storage);
function g() internal returns(uint[] storage s);
}
@@ -0,0 +1,4 @@
library L {
function f() public returns(uint[] storage);
function g() public returns(uint[] storage s);
}