[SMTChecker] Support named arguments in function calls

This commit is contained in:
Leonardo Alt
2020-11-20 11:52:26 -01:00
parent 8d315ee130
commit e4339b0526
12 changed files with 120 additions and 41 deletions
@@ -6,7 +6,7 @@ contract C {
S public s;
constructor() {
s = S({a: 1, x: true});
s = S({x: true, a: 1});
}
}