solidity/test/libsolidity/smtCheckerTests/special/difficulty.sol

11 lines
205 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
function f(uint difficulty) public view {
assert(block.difficulty == difficulty);
}
}
// ----
2020-09-09 14:12:55 +00:00
// Warning 6328: (91-129): Assertion violation happens here.