solidity/test/libsolidity/smtCheckerTests/verification_target/simple_assert.sol

7 lines
169 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(uint a) public pure { assert(a == 2); }
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (82-96): Assertion violation happens here