solidity/test/libsolidity/syntaxTests/iceRegressionTests/declarationUnaryTuple/declaration_unary_plus_tuple.sol
2023-04-18 16:47:00 +02:00

10 lines
144 B
Solidity

contract C
{
function f() public
{
int x = +(0, 0);
}
}
// ----
// ParserError 9636: (59-60): Use of unary + is disallowed.