solidity/test/libsolidity/smtCheckerTests/032_storage_value_vars.sol
Alex Beregszaszi 636da48e82 Move most of SMTChecker tests from C++ to isoltest
But keep divison in C++ because results differ between different solvers
2018-11-22 13:33:24 +00:00

11 lines
181 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() public view {
assert(c > 0);
}
uint c;
}
// ----
// Warning: (84-97): Assertion violation happens here