aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-06 17:21:54 +0800
committerGitHub <noreply@github.com>2018-08-06 17:21:54 +0800
commit30f981fc2ca00765bdf6be55f1b634937847ab92 (patch)
tree84ad7279dad85b5517f6b64244ce38f1bb14fa8d /test/libsolidity/syntaxTests
parent3684151e53ae4482c6b4dfea1debe5050c24d6c6 (diff)
parent83e6c345265c88c194416c2499af8afa3dc51e83 (diff)
downloaddexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar.gz
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar.bz2
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar.lz
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar.xz
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.tar.zst
dexon-solidity-30f981fc2ca00765bdf6be55f1b634937847ab92.zip
Merge pull request #4681 from ethereum/var-suggestion-crash
Fix declaration suggestion for var with different number of components
Diffstat (limited to 'test/libsolidity/syntaxTests')
-rw-r--r--test/libsolidity/syntaxTests/types/var_type_suggest.sol12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/types/var_type_suggest.sol b/test/libsolidity/syntaxTests/types/var_type_suggest.sol
index 176fab96..cc35fdd6 100644
--- a/test/libsolidity/syntaxTests/types/var_type_suggest.sol
+++ b/test/libsolidity/syntaxTests/types/var_type_suggest.sol
@@ -12,6 +12,10 @@ contract C {
var myblockhash = block.blockhash;
var (a, b) = (2, "troi");
var (x,, z) = h();
+ var (c, d) = ("");
+ var (k, l) = (2);
+ var (m, n) = 1;
+ var (o, p) = "";
}
}
// ----
@@ -21,3 +25,11 @@ contract C {
// SyntaxError: (293-326): Use of the "var" keyword is disallowed. Type cannot be expressed in syntax.
// SyntaxError: (336-360): Use of the "var" keyword is disallowed. Use explicit declaration `(uint8 a, string memory b) = ...´ instead.
// SyntaxError: (370-387): Use of the "var" keyword is disallowed. Use explicit declaration `(uint256 x, , uint256 z) = ...´ instead.
+// TypeError: (397-414): Different number of components on the left hand side (2) than on the right hand side (1).
+// SyntaxError: (397-414): Use of the "var" keyword is disallowed. Type cannot be expressed in syntax.
+// TypeError: (424-440): Different number of components on the left hand side (2) than on the right hand side (1).
+// SyntaxError: (424-440): Use of the "var" keyword is disallowed. Type cannot be expressed in syntax.
+// TypeError: (450-464): Different number of components on the left hand side (2) than on the right hand side (1).
+// SyntaxError: (450-464): Use of the "var" keyword is disallowed. Type cannot be expressed in syntax.
+// TypeError: (474-489): Different number of components on the left hand side (2) than on the right hand side (1).
+// SyntaxError: (474-489): Use of the "var" keyword is disallowed. Type cannot be expressed in syntax.