2020-09-11 19:49:04 +00:00
pragma experimental SMTChecker ;
contract C {
function f ( ) pure public {
require ( false ) ;
// This is not reachable.
assert ( false ) ;
}
function g ( ) pure public {
require ( false , " require message " ) ;
// This is not reachable.
assert ( false ) ;
}
function h ( bool b ) pure public {
if ( b )
require ( false ) ;
assert ( ! b ) ;
}
// Check that arguments are evaluated.
bool x = false ;
function m ( ) view internal returns ( string memory ) {
assert ( x != true ) ;
}
function i ( ) public {
x = true ;
require ( false , m ( ) ) ;
}
}
// ----
2020-10-08 10:47:47 +00:00
// Warning 6321: (429-442): Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.
2021-01-06 15:34:16 +00:00
// Warning 6328: (448-465): CHC: Assertion violation happens here.\nCounterexample:\nx = true\n\nTransaction trace:\nC.constructor()\nState: x = false\nC.i()\n C.m() -- internal call