2018-10-22 16:19:11 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint difficulty) public view {
|
|
|
|
assert(block.difficulty == difficulty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-09-25 17:09:06 +00:00
|
|
|
// Warning 6328: (91-129): CHC: Assertion violation happens here.
|