solidity/test/libsolidity/smtCheckerTests/types/storage_value_vars_2.sol
2020-07-23 18:49:03 +02:00

13 lines
215 B
Solidity

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