solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/244_tuples.sol

14 lines
510 B
Solidity
Raw Normal View History

contract C {
function f() public {
uint a = (1);
2018-07-10 10:36:48 +00:00
(uint b,) = uint8(1);
(uint c, uint d) = (uint32(1), 2 + a);
(uint e,) = (uint64(1), 2, b);
a;b;c;d;e;
}
}
// ----
2018-07-10 10:36:48 +00:00
// 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