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

11 lines
204 B
Solidity
Raw Normal View History

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