solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/404_read_returned_struct.sol

13 lines
288 B
Solidity

pragma experimental ABIEncoderV2;
contract A {
struct T {
int x;
int y;
}
function g() public returns (T) {
return this.g();
}
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.