mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
510 B
Solidity
19 lines
510 B
Solidity
|
function f(uint) pure returns (uint) {
|
||
|
return 2;
|
||
|
}
|
||
|
function f(string memory) pure returns (uint) {
|
||
|
return 3;
|
||
|
}
|
||
|
|
||
|
contract C {
|
||
|
function g() public pure {
|
||
|
(uint x, uint y) = (f(2), f("abc"));
|
||
|
assert(x == 2); // should hold
|
||
|
assert(y == 4); // should fail
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// SMTEngine: all
|
||
|
// ----
|
||
|
// Warning 6328: (229-243): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 2\ny = 3\n\nTransaction trace:\nC.constructor()\nC.g()\n f(2) -- internal call\n f([97, 98, 99]) -- internal call
|