mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix assignment of struct containing array of mappings
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
contract Test {
|
||||
struct S1 { uint8 a; mapping(uint => uint)[] b1; uint8 c; }
|
||||
struct S2 { uint8 a; S1[] b2; uint8 c; }
|
||||
S2 s2;
|
||||
function f() public {
|
||||
S2 memory x = s2;
|
||||
x.b2.length;
|
||||
x.b2[1].b1[2][3];
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (208-218): Member "b1" is not available in struct Test.S1 memory outside of storage.
|
||||
Reference in New Issue
Block a user