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); }
}
// ----
// Warning 4661: (82-96): Assertion violation happens here