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

10 lines
120 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
function g() public pure {
(uint x, ) = (2, 4);
assert(x == 2);
}
}