aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-07-05 00:35:01 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-07-13 02:33:52 +0800
commit62645d530253c365ac09979135e9037f2bde2934 (patch)
tree2d62564d9208f14f0e807d14fa2b5dd977acdaaa /test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
parent6f383e162648766d0cc804fe4cbb5760b48953a2 (diff)
downloaddexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar.gz
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar.bz2
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar.lz
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar.xz
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.tar.zst
dexon-solidity-62645d530253c365ac09979135e9037f2bde2934.zip
Update tests.
Diffstat (limited to 'test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol')
-rw-r--r--test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol9
1 files changed, 3 insertions, 6 deletions
diff --git a/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol b/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
index 95e8cf37..d18c115d 100644
--- a/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
+++ b/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
@@ -1,13 +1,10 @@
contract C {
- function f() public {
+ function f() public pure {
uint a = (1);
- (uint b,) = uint8(1);
+ (uint b,) = (uint8(1),2);
(uint c, uint d) = (uint32(1), 2 + a);
- (uint e,) = (uint64(1), 2, b);
+ (uint e, ,) = (uint64(1), 2, b);
a;b;c;d;e;
}
}
// ----
-// Warning: (69-89): Different number of components on the left hand side (2) than on the right hand side (1).
-// Warning: (146-175): Different number of components on the left hand side (2) than on the right hand side (3).
-// Warning: (17-201): Function state mutability can be restricted to pure