solidity/test/libsolidity/syntaxTests/iceRegressionTests/declarationUnaryTuple/declaration_unary_tuple.sol
2022-04-01 23:41:18 -05:00

21 lines
1.2 KiB
Solidity

contract C
{
function f() public
{
int x = +(0, 0);
int y = -(0, 0);
(int z) = ~(0, 0);
(int t) = !(0, 0);
}
}
// ----
// SyntaxError 9636: (59-66='+(0, 0)'): Use of unary + is disallowed.
// TypeError 4907: (59-66='+(0, 0)'): Unary operator + cannot be applied to type tuple(int_const 0,int_const 0)
// TypeError 7364: (51-66='int x = +(0, 0)'): Different number of components on the left hand side (1) than on the right hand side (2).
// TypeError 4907: (84-91='-(0, 0)'): Unary operator - cannot be applied to type tuple(int_const 0,int_const 0)
// TypeError 7364: (76-91='int y = -(0, 0)'): Different number of components on the left hand side (1) than on the right hand side (2).
// TypeError 4907: (111-118='~(0, 0)'): Unary operator ~ cannot be applied to type tuple(int_const 0,int_const 0)
// TypeError 7364: (101-118='(int z) = ~(0, 0)'): Different number of components on the left hand side (1) than on the right hand side (2).
// TypeError 4907: (138-145='!(0, 0)'): Unary operator ! cannot be applied to type tuple(int_const 0,int_const 0)
// TypeError 7364: (128-145='(int t) = !(0, 0)'): Different number of components on the left hand side (1) than on the right hand side (2).