Skip to content

Commit

Permalink
fix the test case to not fail
Browse files Browse the repository at this point in the history
related to #155, but that is a separate inheritence issue
  • Loading branch information
Dejan Jovanovic committed Oct 22, 2020
1 parent db1482e commit ac3d55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/solc-verify/basic/ExplicitScopings.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ contract A {
}

contract B is A {
function g(int x) public pure override returns (int) {
function g(int x) public pure override returns (int y) {
int z = A.g(x); // Explicit scoping with base name
assert(z == x + 1);
return z;
Expand Down

0 comments on commit ac3d55f

Please sign in to comment.