solidity/test/libsolidity/smtCheckerTests/types/tuple_function_3.sol
2020-03-11 16:29:07 +01:00

21 lines
378 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() internal pure returns (uint, bool, uint) {
return (2, false, 3);
}
function g() public pure {
uint x;
uint y;
bool b;
(,b,) = f();
assert(x == 2);
assert(y == 4);
assert(!b);
}
}
// ----
// Warning: (205-219): Assertion violation happens here
// Warning: (223-237): Assertion violation happens here