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

11 lines
186 B
Solidity
Raw Normal View History

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