mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
342 B
Solidity
11 lines
342 B
Solidity
pragma experimental SMTChecker;
|
|
contract D {
|
|
function f(uint x) public pure {
|
|
assert(x**2 == 4);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 5188: (88-92): Assertion checker does not yet implement this operator.
|
|
// Warning 6328: (81-98): CHC: Assertion violation happens here.
|
|
// Warning 5188: (88-92): Assertion checker does not yet implement this operator.
|