diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-16 06:12:31 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-03-18 01:06:52 +0800 |
commit | 2c4bce2d62dc8bfc752858db12c625aec6e5960f (patch) | |
tree | 2899876e56f303de00c637ce3e82f37fb004ebef /docs/contracts.rst | |
parent | 16a91ef90aaf589361e34a10dcee2181ba6cb2ed (diff) | |
download | dexon-solidity-2c4bce2d62dc8bfc752858db12c625aec6e5960f.tar.gz dexon-solidity-2c4bce2d62dc8bfc752858db12c625aec6e5960f.tar.zst dexon-solidity-2c4bce2d62dc8bfc752858db12c625aec6e5960f.zip |
Disallow enums in interfaces
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 33627b92..921d2870 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -933,6 +933,7 @@ Interfaces are similar to abstract contracts, but they cannot have any functions #. Cannot inherit other contracts or interfaces. #. Cannot define variables. #. Cannot define structs. +#. Cannot define enums. Some of these restrictions might be lifted in the future. |