[SMTChecker] Fix internal error on abstract modifier

This commit is contained in:
Martin Blicha
2020-12-14 18:23:25 +01:00
parent e21be30df4
commit 103fa3b7eb
2 changed files with 11 additions and 2 deletions
@@ -0,0 +1,6 @@
pragma experimental SMTChecker;
abstract contract A {
function f() public mod {}
modifier mod virtual;
}