mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix internal compiler error for arrays of recursive structs.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
contract Test {
|
||||
struct RecursiveStruct {
|
||||
RecursiveStruct[] vals;
|
||||
}
|
||||
|
||||
function func() private pure {
|
||||
RecursiveStruct[1] memory val;
|
||||
val;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user