mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
403 B
Solidity
14 lines
403 B
Solidity
contract C {
|
|
function f(uint a) internal pure returns (bool b) {
|
|
b = a > 5;
|
|
}
|
|
function g(uint a) public pure {
|
|
uint c = f(a) ? 3 : 4;
|
|
assert(c > 5);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (170-183): CHC: Assertion violation happens here.\nCounterexample:\n\na = 6\nc = 3\n\nTransaction trace:\nC.constructor()\nC.g(6)\n C.f(6) -- internal call
|