[SMTChecker] Added support for selector when expression's value is known at compile time

This commit is contained in:
Martin Blicha
2020-10-22 14:18:52 +02:00
parent 2b983879c1
commit ade3b9951c
8 changed files with 143 additions and 0 deletions
@@ -0,0 +1,8 @@
pragma experimental SMTChecker;
contract C {
function f() public pure {
assert(msg.sig == this.f.selector);
}
}
// ----