solidity/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol

8 lines
217 B
Solidity

contract C {
struct S { uint a; S[] sub; }
function f() public pure returns (uint, S memory) {
}
}
// ----
// TypeError 4103: (91-99): Recursive type not allowed for public or external contract functions.