mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Sort tests.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
contract Creator {
|
||||
uint256 public r;
|
||||
address public ch;
|
||||
|
||||
constructor(address[3] memory s, uint256 x) public {
|
||||
r = x;
|
||||
ch = s[2];
|
||||
}
|
||||
}
|
||||
|
||||
// ----
|
||||
// constructor(): 1, 2, 3, 4 ->
|
||||
// r() -> 4
|
||||
// ch() -> 3
|
||||
Reference in New Issue
Block a user