1 2 3 4 5 6 7 8 9 10
pragma experimental SMTChecker; contract C { function f(bool x) public pure { if(x) { assert(x); } else { assert(!x); } } }