mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Extracting more end-to-end tests.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
contract test {
|
||||
struct s1 {
|
||||
uint8 x;
|
||||
bool y;
|
||||
}
|
||||
struct s2 {
|
||||
uint32 z;
|
||||
s1 s1data;
|
||||
mapping(uint8 => s2) recursive;
|
||||
}
|
||||
s2 data;
|
||||
function check() public returns (bool ok) {
|
||||
return data.z == 1 && data.s1data.x == 2 &&
|
||||
data.s1data.y == true &&
|
||||
data.recursive[3].recursive[4].z == 5 &&
|
||||
data.recursive[4].recursive[3].z == 6 &&
|
||||
data.recursive[0].s1data.y == false &&
|
||||
data.recursive[4].z == 9;
|
||||
}
|
||||
function set() public {
|
||||
data.z = 1;
|
||||
data.s1data.x = 2;
|
||||
data.s1data.y = true;
|
||||
data.recursive[3].recursive[4].z = 5;
|
||||
data.recursive[4].recursive[3].z = 6;
|
||||
data.recursive[0].s1data.y = false;
|
||||
data.recursive[4].z = 9;
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// check() -> false
|
||||
// set() ->
|
||||
// check() -> true
|
||||
Reference in New Issue
Block a user