Fix bug related to state variables of function type accessed via base contract.

This commit is contained in:
chriseth
2018-11-29 19:30:27 +01:00
parent 124a8def84
commit 73a64da041
4 changed files with 31 additions and 3 deletions
@@ -0,0 +1,7 @@
contract C {
function () internal returns (uint) x;
constructor() public {
C.x = g;
}
function g() public pure returns (uint) {}
}