solidity/test/libsolidity/smtCheckerTests/functions/functions_trivial_condition_while.sol

9 lines
167 B
Solidity
Raw Normal View History

contract C
{
function f(bool x) public pure { require(x); while (x) {} }
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6838: (66-67): BMC: Condition is always true.