solidity/test/libsolidity/semanticTests/abiEncoderV2/struct/struct_function.sol
2022-05-19 20:23:28 +02:00

15 lines
378 B
Solidity

pragma abicoder v2;
contract C {
struct S { function () external returns (uint) f; uint b; }
function f(S memory s) public returns (uint, uint) {
return (s.f(), s.b);
}
function test() public returns (uint, uint) {
return this.f(S(this.g, 3));
}
function g() public returns (uint) { return 7; }
}
// ----
// test() -> 7, 3