Changelog entry and tests.

This commit is contained in:
chriseth
2018-11-26 12:41:26 +01:00
parent 0f0e466d36
commit ac5803bf3e
5 changed files with 33 additions and 1 deletions
@@ -0,0 +1,7 @@
contract A {
function f() external pure {}
}
contract B is A {
function f() public pure {
}
}