solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol
Daniel Kirchner ad47fe23c1 Update tests.
2018-07-10 15:28:05 +02:00

14 lines
510 B
Solidity

contract C {
function f() public {
uint a = (1);
(uint b,) = uint8(1);
(uint c, uint d) = (uint32(1), 2 + a);
(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