solidity/test/libsolidity/smtCheckerTests/types/storage_value_vars_2.sol
2018-11-22 13:33:28 +00:00

13 lines
210 B
Solidity

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