solidity/test/libsolidity/syntaxTests/structs/recursion/recursive_struct_forward_reference.sol
2018-11-30 16:30:19 +01:00

12 lines
350 B
Solidity

pragma experimental ABIEncoderV2;
contract C {
function f(Data.S memory a) public {}
}
contract Data {
struct S { S x; }
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.
// TypeError: (63-78): Internal or recursive type is not allowed for public or external functions.