solidity/test/libsolidity/smtCheckerTests/types/tuple_extra_parens_3.sol

8 lines
137 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f2() public pure returns(int) {
int a;
(((((((, a),)))))) = ((1, 2), 3);
}
}