This commit is contained in:
Leonardo Alt 2020-05-28 12:40:08 +02:00
parent a73ec6a82f
commit ec766958ea

View File

@ -0,0 +1,5 @@
pragma experimental SMTChecker;
contract c {
bool b = (f() == 0) && (f() == 0);
function f() internal returns (uint) {}
}