2020-11-26 16:14:58 +00:00
|
|
|
contract C {
|
|
|
|
mapping (uint => uint[][][]) public m;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
m[0].push();
|
|
|
|
m[0].push();
|
|
|
|
m[0][1].push();
|
|
|
|
m[0][1].push();
|
|
|
|
m[0][1].push();
|
|
|
|
m[0][1][2].push();
|
|
|
|
m[0][1][2].push();
|
|
|
|
m[0][1][2].push();
|
|
|
|
m[0][1][2].push();
|
|
|
|
m[0][1][2][3] = 42;
|
|
|
|
}
|
|
|
|
|
|
|
|
function f() public view {
|
|
|
|
uint y = this.m(0,1,2,3);
|
|
|
|
assert(y == m[0][1][2][3]); // should hold
|
2020-11-09 15:37:08 +00:00
|
|
|
// Disabled because of Spacer seg fault
|
|
|
|
//assert(y == 1); // should fail
|
2020-11-26 16:14:58 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2020-11-26 16:14:58 +00:00
|
|
|
// ----
|