solidity/test/libsolidity/smtCheckerTests/types/tuple_function_3.sol
2020-07-23 18:49:03 +02:00

21 lines
388 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 6328: (205-219): Assertion violation happens here
// Warning 6328: (223-237): Assertion violation happens here