blob: bceddb38041bf05b540b32b6782b627b32da2e2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|