diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-04-05 20:43:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 20:43:28 +0800 |
commit | 037eba20fc6c25777e930d97c1f53f26c6443bb0 (patch) | |
tree | b2ea415859768ee046f5d8f93ef4741c25f1a19d /test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol | |
parent | 36d6c27e6826f173b491a7a536a3755609edaa29 (diff) | |
parent | 96eff0ff6abc614cb44a01137dfd0df1ef750088 (diff) | |
download | dexon-solidity-037eba20fc6c25777e930d97c1f53f26c6443bb0.tar.gz dexon-solidity-037eba20fc6c25777e930d97c1f53f26c6443bb0.tar.zst dexon-solidity-037eba20fc6c25777e930d97c1f53f26c6443bb0.zip |
Merge pull request #3824 from ethereum/baseArgumentsEmptyParenthesis
Error when using empty parentheses for base class constructors that r…
Diffstat (limited to 'test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol b/test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol index 9607ed60..b3fbd04a 100644 --- a/test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol +++ b/test/libsolidity/syntaxTests/inheritance/base_arguments_empty_parentheses.sol @@ -3,4 +3,5 @@ contract Base { } contract Derived is Base(2) { } contract Derived2 is Base(), Derived() { } -contract Derived3 is Base, Derived {} +// ---- +// Warning: Wrong argument count for constructor call: 0 arguments given but expected 1. |