mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
302 B
Solidity
21 lines
302 B
Solidity
contract C
|
|
{
|
|
function f(uint _x) public pure returns (uint) {
|
|
return _x;
|
|
}
|
|
}
|
|
|
|
contract D
|
|
{
|
|
C c;
|
|
function g(uint _y) public view {
|
|
uint z = c.f(_y);
|
|
assert(z == _y);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 6328: (158-173): CHC: Assertion violation happens here.
|