Merge pull request #7618 from ethereum/addMoreAbstractKeywordsInTests

Add some more abstract keywords in test to make sure the correct property is tested.
This commit is contained in:
chriseth
2019-11-05 13:38:21 +01:00
committed by GitHub
40 changed files with 120 additions and 174 deletions
+5
View File
@@ -21,6 +21,11 @@ This section lists purely syntactic changes that do not affect the behavior of e
* Function ``push(value)`` for dynamic storage arrays do not return the new length anymore.
* The new keyword ``abstract`` can be used to mark contracts as abstract. It has to be used
if a contract does not implement all its functions.
* Libraries have to implement all their functions, not only the internal ones.
* New reserved keywords: ``virtual``.
Semantic Only Changes