diff options
author | chriseth <chris@ethereum.org> | 2018-07-11 20:45:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 20:45:05 +0800 |
commit | f3abfa81ad3cdf3cfd0b9e1acf11329a617466a2 (patch) | |
tree | d0a9803762993ab1eae0f573a8774741d65a189d /Changelog.md | |
parent | 238dbe1b9904cee916089ab51b81a5368b80dda3 (diff) | |
parent | e7dc9d27fcd21479e897a499af415c906bf3f670 (diff) | |
download | dexon-solidity-f3abfa81ad3cdf3cfd0b9e1acf11329a617466a2.tar.gz dexon-solidity-f3abfa81ad3cdf3cfd0b9e1acf11329a617466a2.tar.zst dexon-solidity-f3abfa81ad3cdf3cfd0b9e1acf11329a617466a2.zip |
Merge pull request #4454 from ethereum/constructorArgCount
[BREAKING] Wrong argument count in constructor call
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 5418a205..4f37db1f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -37,6 +37,7 @@ Breaking Changes: * Type Checker: Disallow conversions between ``bytesX`` and ``uintY`` of different size. * Type Checker: Disallow empty tuple components. This was partly already the case in the experimental 0.5.0 mode. * Type Checker: Disallow specifying base constructor arguments multiple times in the same inheritance hierarchy. This was already the case in the experimental 0.5.0 mode. + * Type Checker: Disallow calling constructor with wrong argument count. This was already the case in the experimental 0.5.0 mode. * Type Checker: Disallow uninitialized storage variables. This was already the case in the experimental 0.5.0 mode. * Type Checker: Only accept a single ``bytes`` type for ``.call()`` (and family), ``keccak256()``, ``sha256()`` and ``ripemd160()``. * Type Checker: Fallback function must be external. This was already the case in the experimental 0.5.0 mode. |