solidity/test/libsolidity/semanticTests/various/skip_dynamic_types_for_structs.sol

23 lines
509 B
Solidity
Raw Normal View History

// For accessors, the dynamic types are already removed in the external signature itself.
contract C {
struct S {
uint256 x;
string a; // this is present in the accessor
uint256[] b; // this is not present
uint256 y;
}
S public s;
function g() public returns (uint256, uint256) {
s.x = 2;
s.a = "abc";
s.b = [7, 8, 9];
s.y = 6;
(uint256 x, , uint256 y) = this.s();
return (x, y);
}
}
// ----
// g() -> 2, 6