diff options
author | Christian Parpart <christian@parpart.family> | 2018-06-11 20:15:27 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-06-26 16:40:26 +0800 |
commit | e38139c800a780ee6d7aeb55af86aea16a08a907 (patch) | |
tree | d6f2fe45fce21ba5980cf4a63e84701ebf9f37d8 /test/libsolidity/syntaxTests/tupleAssignments | |
parent | a083ccd4575bede56724e9ef851a2035f7d5ffb0 (diff) | |
download | dexon-solidity-e38139c800a780ee6d7aeb55af86aea16a08a907.tar.gz dexon-solidity-e38139c800a780ee6d7aeb55af86aea16a08a907.tar.zst dexon-solidity-e38139c800a780ee6d7aeb55af86aea16a08a907.zip |
test: Adapted to the change of the var-keyword elimination.
Diffstat (limited to 'test/libsolidity/syntaxTests/tupleAssignments')
-rw-r--r-- | test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol b/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol index 1d243c7c..23484567 100644 --- a/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol +++ b/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol @@ -1,11 +1,8 @@ contract C { function f() public pure returns (uint, uint, uint, uint) { - // Can later be replaced by (uint a, uint b,) = f(); - var (a,b,) = f(); + (uint a, uint b,) = f(); a; b; } } // ---- -// Warning: (136-137): Use of the "var" keyword is deprecated. -// Warning: (138-139): Use of the "var" keyword is deprecated. -// Warning: (131-147): Different number of components on the left hand side (3) than on the right hand side (4). +// Warning: (76-99): Different number of components on the left hand side (3) than on the right hand side (4). |