solidity/test/libsolidity/smtCheckerTests/types/storage_value_vars_2.sol

13 lines
215 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
address a;
bool b;
uint c;
function f() public view {
assert(c > 0);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (123-136): Assertion violation happens here