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

8 lines
147 B
Solidity
Raw Normal View History

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