docs: add note about initialisation in 060-breaking-changes

This commit is contained in:
Paul Razvan Berg 2020-06-06 23:06:30 +03:00
parent 325a78fe47
commit 2c31a5d15d
No known key found for this signature in database
GPG Key ID: 65B7BBE8447BEDC8

View File

@ -42,7 +42,8 @@ For most of the topics the compiler will provide suggestions.
storage arrays.
* 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.
if a contract does not implement all its functions. Abstract contracts cannot be initialised and solidity outputs no
no bytecode when compiling them.
* Libraries have to implement all their functions, not only the internal ones.