mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Support named arguments in function calls
This commit is contained in:
@@ -6,7 +6,7 @@ contract C {
|
||||
S public s;
|
||||
|
||||
constructor() {
|
||||
s = S({a: 1, x: true});
|
||||
s = S({x: true, a: 1});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user